Skip to content

Commit 7e80cf1

Browse files
authored
Update Python requirement (3.7.1) (#502)
1 parent 41b003d commit 7e80cf1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

151151
Development versions of the PEtab library can be installed using
152152

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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']},

0 commit comments

Comments
 (0)