File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ it is running
146146
147147 pip3 install petab
148148
149- It will require Python>=3.6 to run.
149+ It will require Python>=3.7.1 to run.
150150
151151Development versions of the PEtab library can be installed using
152152
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ def absolute_links(txt):
2626
2727
2828# Python version check. We need >= 3.6 due to e.g. f-strings
29- if sys .version_info < (3 , 6 ):
30- sys .exit ('PEtab requires at least Python version 3.6 ' )
29+ if sys .version_info < (3 , 7 , 1 ):
30+ sys .exit ('PEtab requires at least Python version 3.7.1 ' )
3131
3232# read version from file
3333__version__ = ''
@@ -64,7 +64,7 @@ def absolute_links(txt):
6464 ],
6565 include_package_data = True ,
6666 tests_require = ['flake8' , 'pytest' , 'python-libcombine' ],
67- python_requires = '>=3.6 ' ,
67+ python_requires = '>=3.7.1 ' ,
6868 entry_points = ENTRY_POINTS ,
6969 extras_require = {'reports' : ['Jinja2' ],
7070 'combine' : ['python-libcombine>=0.2.6' ]},
You can’t perform that action at this time.
0 commit comments