Skip to content

Commit

Permalink
abi with 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
tbaudier committed Sep 5, 2024
1 parent dc4cfc2 commit e4975a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ def build_extension(self, ext):
packages=find_packages(),
package_data=package_data,
zip_safe=False,
python_requires=">=3.8",
options={"bdist_wheel": {"py_limited_api": "cp38"}},
python_requires=">=3.9",
options={"bdist_wheel": {"py_limited_api": "cp39"}},
include_package_data=True,
classifiers=(
"Programming Language :: Python :: 3",
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,13 @@ description = "Simulation for Medical Physics"
license = { file = "LICENSE.md" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
requires-python = ">=3.9"

[project.scripts]
opengate_tests = "opengate.bin.opengate_tests:go"
Expand Down

0 comments on commit e4975a9

Please sign in to comment.