File tree Expand file tree Collapse file tree 4 files changed +5
-10
lines changed
Expand file tree Collapse file tree 4 files changed +5
-10
lines changed Original file line number Diff line number Diff line change 1111 strategy :
1212 matrix :
1313 platform : [windows-latest, macos-latest, ubuntu-latest]
14- python-version : ["3.9 ", "3.12"]
14+ python-version : ["3.10 ", "3.12"]
1515 runs-on : ${{ matrix.platform }}
1616
1717 steps :
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ sphinx:
1010build :
1111 os : " ubuntu-22.04"
1212 tools :
13- python : " 3.9 "
13+ python : " 3.10 "
1414
1515python :
1616 install :
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ and the easiest way to install it is running
2222
2323 pip3 install petab
2424
25- It will require Python>=3.9 to run. (We are following the
25+ It will require Python>=3.10 to run. (We are following the
2626[ numpy Python support policy] ( https://numpy.org/neps/nep-0029-deprecation_policy.html ) ).
2727
2828Development versions of the PEtab library can be installed using
@@ -57,7 +57,7 @@ Examples for PEtab Python library usage:
5757
5858## Getting help
5959
60- If you have any question or problems with this package, feel free to post them
60+ If you have any questions or problems with this package, feel free to post them
6161at our GitHub [ issue tracker] ( https://github.com/PEtab-dev/libpetab-python/issues/ ) .
6262
6363## Contributing
Original file line number Diff line number Diff line change 11import os
22import re
3- import sys
43
54from setuptools import find_namespace_packages , setup
65
@@ -30,10 +29,6 @@ def absolute_links(txt):
3029 return txt
3130
3231
33- # Python version check
34- if sys .version_info < (3 , 9 , 0 ):
35- sys .exit ("PEtab requires at least Python version 3.9" )
36-
3732# read version from file
3833__version__ = ""
3934version_file = os .path .join ("petab" , "version.py" )
@@ -72,7 +67,7 @@ def absolute_links(txt):
7267 "jsonschema" ,
7368 ],
7469 include_package_data = True ,
75- python_requires = ">=3.9 .0" ,
70+ python_requires = ">=3.10 .0" ,
7671 entry_points = ENTRY_POINTS ,
7772 extras_require = {
7873 "tests" : [
You can’t perform that action at this time.
0 commit comments