Skip to content

Commit

Permalink
feat: require at least Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester committed Feb 18, 2022
1 parent 1a9b483 commit fd5daae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -11,8 +11,8 @@
import versioneer


if sys.version_info < (3, 6):
print("At least Python 3.6 is required for Snakemake.\n", file=sys.stderr)
if sys.version_info < (3, 7):
print("At least Python 3.7 is required for Snakemake.\n", file=sys.stderr)
exit(1)


Expand Down

0 comments on commit fd5daae

Please sign in to comment.