Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,14 +167,14 @@ jobs:
uses: pypa/cibuildwheel@v3.2.0
env:
CIBW_ARCHS: auto64
CIBW_BUILD: 'cp*'
CIBW_BUILD: 'cp312-* cp313-* cp314-*'
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=13.0
# Note #1: the value of CIBW_ENVIRONMENT_MACOS must be in sync with that of MACOS_DEPLOYMENT_TARGET in
# CMakelists.txt.
# Note #2: for some reasons, we need to specify the minor version, hence using 13.0 rather than 13.
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_34
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_34
CIBW_SKIP: 'cp38* cp39* cp*t-* *musllinux*'
CIBW_SKIP: '*musllinux*'
- name: Upload Python wheel artifacts
uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ jobs:
if: ${{ matrix.documentation == 'ON' || matrix.python_support == 'ON' || matrix.target == 'python_check_code_formatting' }}
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
- name: Install CMake and Ninja
uses: lukka/get-cmake@latest
- name: Install buildcache
Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.20260409.0
0.20260409.1
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
author="libOpenCOR contributors",
url="https://opencor.ws/libopencor/",
license="Apache 2.0",
python_requires=">=3.12, <3.15",
packages=["libopencor"],
package_dir={"": "src/bindings/python"},
cmake_args=[
Expand All @@ -52,6 +53,10 @@
"Programming Language :: C++",
"Programming Language :: JavaScript",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
Loading