From e4975a928ef4534b2cb78d592e009839b2577759 Mon Sep 17 00:00:00 2001 From: Thomas BAUDIER Date: Thu, 5 Sep 2024 09:58:33 +0200 Subject: [PATCH] abi with 3.9 --- core/setup.py | 4 ++-- pyproject.toml | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/core/setup.py b/core/setup.py index 3cd943ec2..4aac47944 100755 --- a/core/setup.py +++ b/core/setup.py @@ -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", diff --git a/pyproject.toml b/pyproject.toml index e8555e0ce..9ee031967 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"