Skip to content

Commit

Permalink
Add safeguards against unsupported Python versions
Browse files Browse the repository at this point in the history
Co-authored-by: Ingmar Schoegl <ischoegl@lsu.edu>
  • Loading branch information
bweber-rebellion and ischoegl committed Mar 26, 2023
1 parent cec8403 commit 469e3d7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion interfaces/cython/setup.cfg.in
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ install_requires =
numpy >= 1.12.0
ruamel.yaml >= 0.15.34
packaging
python_requires = >=@py_min_ver_str@
python_requires = >=@py_min_ver_str@,<@py_next_ver_str@
packages =
cantera
cantera.data
Expand Down
2 changes: 1 addition & 1 deletion interfaces/python_minimal/setup.cfg.in
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ zip_safe = True
install_requires =
numpy >= 1.12.0
ruamel.yaml >= 0.15.34
python_requires = >=@py_min_ver_str@
python_requires = >=@py_min_ver_str@,<@py_next_ver_str@
packages =
cantera

Expand Down
2 changes: 1 addition & 1 deletion interfaces/python_sdist/setup.cfg.in
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ install_requires =
numpy >= 1.12.0
ruamel.yaml >= 0.15.34
packaging
python_requires = >=@py_min_ver_str@
python_requires = >=@py_min_ver_str@,<@py_next_ver_str@
packages =
cantera
cantera.data
Expand Down

0 comments on commit 469e3d7

Please sign in to comment.