Skip to content

Commit 6a29551

Browse files
authored
[MRG] Debug wheels (and remove i686) (#543)
* build wheels * remove i686 wheels and build wheels * update release file
1 parent e8767bd commit 6a29551

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/build_wheels.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ jobs:
3030
3131
- name: Install cibuildwheel
3232
run: |
33-
python -m pip install cibuildwheel==2.14.1
33+
python -m pip install cibuildwheel==2.16.2
3434
3535
- name: Build wheels
3636
env:
37-
CIBW_SKIP: "pp*-win* pp*-macosx* cp2* pp* cp36* cp*musl*" # remove pypy on mac and win (wrong version)
37+
CIBW_SKIP: "pp*-win* pp*-macosx* cp2* pp* cp36* cp*musl* *i686" # remove pypy on mac and win (wrong version)
3838
run: |
3939
python -m cibuildwheel --output-dir wheelhouse
4040
@@ -65,7 +65,7 @@ jobs:
6565
6666
- name: Install cibuildwheel
6767
run: |
68-
python -m pip install cibuildwheel==2.14.1
68+
python -m pip install cibuildwheel==2.16.2
6969
7070
- name: Set up QEMU
7171
if: runner.os == 'Linux'
@@ -75,7 +75,7 @@ jobs:
7575

7676
- name: Build wheels
7777
env:
78-
CIBW_SKIP: "pp*-win* pp*-macosx* cp2* pp* cp*musl*" # remove pypy on mac and win (wrong version)
78+
CIBW_SKIP: "pp*-win* pp*-macosx* cp2* pp* cp*musl* *i686" # remove pypy on mac and win (wrong version)
7979
CIBW_ARCHS_LINUX: auto aarch64 # force aarch64 with QEMU
8080
CIBW_ARCHS_MACOS: x86_64 universal2 arm64
8181
run: |

.github/workflows/build_wheels_weekly.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
3030
- name: Install cibuildwheel
3131
run: |
32-
python -m pip install cibuildwheel==2.14.1
32+
python -m pip install cibuildwheel==2.16.2
3333
3434
- name: Set up QEMU
3535
if: runner.os == 'Linux'
@@ -39,7 +39,7 @@ jobs:
3939

4040
- name: Build wheels
4141
env:
42-
CIBW_SKIP: "pp*-win* pp*-macosx* cp2* pp* cp*musl* cp36*" # remove pypy on mac and win (wrong version)
42+
CIBW_SKIP: "pp*-win* pp*-macosx* cp2* pp* cp*musl* cp36* *i686" # remove pypy on mac and win (wrong version)
4343
CIBW_BEFORE_BUILD: "pip install numpy cython"
4444
CIBW_ARCHS_LINUX: auto aarch64 # force aarch64 with QEMU
4545
CIBW_ARCHS_MACOS: x86_64 universal2 arm64

RELEASES.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
+ The `convolutional_barycenter2d` and `convolutional_barycenter2d_debiased` functions now work with different devices.. (PR #533)
1111
+ New API for Gromov-Wasserstein solvers with `ot.solve_gromov` function (PR #536)
1212
+ New LP solvers from scipy used by default for LP barycenter (PR #537)
13+
+ Update wheels to Python 3.12 and remove old i686 arch that do not have scipy wheels (PR #543)
1314
+ Upgraded unbalanced OT solvers for more flexibility (PR #539)
1415

1516
#### Closed issues

0 commit comments

Comments
 (0)