File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 4
4
# Require setuptools >= 60.0.0 to be able to access its local copy of distutils
5
5
# as distutils is deprecated for Python 3.10+ and will no longer be distributed
6
6
# 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" ]
8
8
build-backend = " setuptools.build_meta"
9
9
10
10
[tool .cibuildwheel ]
11
- manylinux-x86_64-image = " manylinux2010 "
12
- manylinux-i686-image = " manylinux2010 "
11
+ manylinux-x86_64-image = " manylinux2014 "
12
+ manylinux-i686-image = " manylinux2014 "
13
13
# Skip building against musl libc images as JSBSim is not compatible with them.
14
14
skip = " cp*-musllinux_*"
15
15
16
16
[[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 "
Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ for d in os.scandir('jsbsim/aircraft'):
168
168
169
169
# Build & installation process for the JSBSim Python module
170
170
setup(
171
- name="${PROJECT_NAME}",
171
+ name="${PROJECT_NAME}".lower() ,
172
172
version="${PROJECT_VERSION}",
173
173
url="https://github.com/JSBSim-Team/jsbsim",
174
174
author="Jon S. Berndt et al.",
You can’t perform that action at this time.
0 commit comments