Skip to content

Commit e1ea4e8

Browse files
authored
Updates to the tools used to build Python wheels. (JSBSim-Team#1246)
1 parent 7471f53 commit e1ea4e8

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/cpp-python-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ jobs:
656656
Copy-Item -Path .\JSBSim-*\jsbsim\*.pyi -Destination ..\..\build\python\jsbsim
657657
echo "::endgroup::"
658658
- name: Build wheels
659-
uses: pypa/cibuildwheel@v2.19
659+
uses: pypa/cibuildwheel@v2.23
660660
env:
661661
CIBW_BEFORE_ALL_LINUX: |
662662
cd build

python/pyproject.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
# Require setuptools >= 60.0.0 to be able to access its local copy of distutils
55
# as distutils is deprecated for Python 3.10+ and will no longer be distributed
66
# with Python 3.12+.
7-
requires = ["setuptools>=60.0.0", "cython!=0.29.26"]
7+
requires = ["setuptools>=60.0.0,<72.0.0", "cython!=0.29.26"]
88
build-backend = "setuptools.build_meta"
99

1010
[tool.cibuildwheel]
11-
manylinux-x86_64-image = "manylinux2010"
12-
manylinux-i686-image = "manylinux2010"
11+
manylinux-x86_64-image = "manylinux2014"
12+
manylinux-i686-image = "manylinux2014"
1313
# Skip building against musl libc images as JSBSim is not compatible with them.
1414
skip = "cp*-musllinux_*"
1515

1616
[[tool.cibuildwheel.overrides]]
17-
select = "pp39-* pp310-* cp311* cp312*"
18-
manylinux-x86_64-image = "manylinux2014"
19-
manylinux-i686-image = "manylinux2014"
17+
select = "pp38-* cp38*"
18+
manylinux-x86_64-image = "manylinux2010"
19+
manylinux-i686-image = "manylinux2010"

python/setup.py.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ for d in os.scandir('jsbsim/aircraft'):
168168

169169
# Build & installation process for the JSBSim Python module
170170
setup(
171-
name="${PROJECT_NAME}",
171+
name="${PROJECT_NAME}".lower(),
172172
version="${PROJECT_VERSION}",
173173
url="https://github.com/JSBSim-Team/jsbsim",
174174
author="Jon S. Berndt et al.",

0 commit comments

Comments
 (0)