snakemake: add upper limit to allowed python versions (#19705)

Running v3.1.2 with Python 3.7 returns a SyntaxError close to `async=True`.
This commit is contained in:
dunatotatos 2020-11-03 12:13:00 +01:00 committed by GitHub
parent 03b7404316
commit 4637d97d41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@ class Snakemake(PythonPackage):
version('3.11.2', sha256='f7a3b586bc2195f2dce4a4817b7ec828b6d2a0cff74a04e0f7566dcd923f9761')
depends_on('python@3.3:')
depends_on('python@3.3:3.6.999')
depends_on('py-requests', type=('build', 'run'))
depends_on('py-setuptools', type=('build', 'run'))
depends_on('py-wrapt', type=('build', 'run'))