Skip to content

Commit 6b045fb

Browse files
committed
Make manylinux2014 the default and avoid setuptools>=72.
1 parent fadea17 commit 6b045fb

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

python/pyproject.toml

Lines changed: 6 additions & 6 deletions
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

Lines changed: 1 addition & 1 deletion
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)