Skip to content

Commit c1e2cdb

Browse files
authored
Merge pull request #70 from Eric-Vin/master
Bump CIBuildWheel Version to 2.15.0
2 parents dc99953 + 43ebd59 commit c1e2cdb

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
- uses: actions/checkout@v3
3232
- name: Build wheels
33-
uses: pypa/cibuildwheel@v2.12.0
33+
uses: pypa/cibuildwheel@v2.15.0
3434
env:
3535
CIBW_ARCHS_MACOS: 'x86_64 arm64'
3636
- uses: actions/upload-artifact@v3

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
steps:
4949
- uses: actions/checkout@v3
5050
- name: Build wheels
51-
uses: pypa/cibuildwheel@v2.12.0
51+
uses: pypa/cibuildwheel@v2.15.0
5252
env:
5353
CIBW_ARCHS_MACOS: 'x86_64 arm64'
5454
- uses: actions/upload-artifact@v3

pyproject.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
[build-system]
2-
requires = ["setuptools", "wheel", "oldest-supported-numpy", "Cython"]
2+
requires = [
3+
"setuptools",
4+
"wheel",
5+
"Cython<3.0",
6+
"oldest-supported-numpy; python_version<'3.12'",
7+
"numpy>=1.26.0b1; python_version>='3.12'"]
38
build-backend = "setuptools.build_meta"
49

510
[tool.cibuildwheel]

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ setup_requires =
3434
numpy
3535
Cython
3636
install_requires =
37-
numpy
37+
numpy; python_version<'3.12'
38+
numpy>=1.26.0b1; python_version>='3.12'
3839
Cython
3940

4041
[options.package_data]

src/fcl/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.0.4"
1+
__version__ = "0.7.0.5"

tests/test_precision.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ def test_obj_obj_simple_distance(self):
128128
assert ret == -1
129129

130130
def test_obj_obj_signed_distance(self):
131-
132131
request = fcl.DistanceRequest(
133132
enable_nearest_points=True, enable_signed_distance=True
134133
)
@@ -185,7 +184,6 @@ def test_mgr_obj_signed_distance(self):
185184
)
186185

187186
def test_mgr_mgr_signed_distance(self):
188-
189187
req = fcl.DistanceRequest(enable_signed_distance=True, enable_nearest_points=True)
190188
ddata = fcl.DistanceData(req)
191189
self.mgr1.distance(self.mgr2, ddata, fcl.defaultDistanceCallback)

0 commit comments

Comments
 (0)