EGA-archive / crypt4gh

GA4GH cryptographic tools
http://crypt4gh.readthedocs.io
Apache License 2.0
16 stars 12 forks source link

Require at least python version 3.6 #5

Closed blankdots closed 5 years ago

blankdots commented 5 years ago

Small requirement for the python version as crypt4gh uses f strings + letting people know to get with the time.

blankdots commented 5 years ago

@silverdaz this is as early as we can make it:

╰─$ pip install .                                                                                                                                                                                              1 ↵
Processing /home/user/crypt4gh
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-req-build-WmlfzG/setup.py", line 5, in <module>
        assert sys.version_info >= (3, 6), "crypt4gh requires at least python3.6"
    AssertionError: crypt4gh requires at least python3.6

it does require dropping the f{PROG} syntax in setup.py, other way would be just specifying only in readme

silverdaz commented 5 years ago

We can swap the f{PROG} for a .format(PROG) as that'll do it