Skip to content

Commit

Permalink
Add safeguards against Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
bweber-rebellion authored and ischoegl committed Mar 26, 2023
1 parent 8b5a0e9 commit cfd4c5b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions interfaces/cython/setup.cfg.in
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ include_package_data = True
install_requires =
numpy >= 1.12.0
ruamel.yaml >= 0.15.34
packaging
python_requires = >=@py_min_ver_str@
python_requires = >=@py_min_ver_str@,<3.12
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@,<3.12
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@,<3.12
packages =
cantera
cantera.data
Expand Down

0 comments on commit cfd4c5b

Please sign in to comment.