Skip to content

Commit 6ab4ff7

Browse files
authored
[MRG] Debug wheels building (#739)
* change buildwheels version * build all wheels * remove older verison build wheels * add python version? * update reelase file * remove 3.13 because no tensorflow
1 parent e330215 commit 6ab4ff7

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/build_wheels.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@ jobs:
2222
- name: Set up Python 3.10
2323
uses: actions/setup-python@v5
2424
with:
25-
python-version: "3.10"
25+
python-version: "3.11"
2626

2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip setuptools
3030
3131
- name: Install cibuildwheel
3232
run: |
33-
python -m pip install cibuildwheel==2.16.4
33+
python -m pip install cibuildwheel==2.23.3
3434
3535
- name: Build wheels
3636
env:
37-
CIBW_SKIP: "pp*-win* pp*-macosx* cp2* pp* cp36* cp*musl* *i686" # remove pypy on mac and win (wrong version)
37+
CIBW_SKIP: "pp*-win* pp*-macosx* cp2* pp* cp36* cp37* cp38* cp*musl* *i686" # remove pypy on mac and win (wrong version)
3838
run: |
3939
python -m cibuildwheel --output-dir wheelhouse
4040
@@ -57,7 +57,7 @@ jobs:
5757
- name: Set up Python 3.10
5858
uses: actions/setup-python@v5
5959
with:
60-
python-version: "3.10"
60+
python-version: "3.11"
6161

6262
- name: Install dependencies
6363
run: |

.github/workflows/build_wheels_weekly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ jobs:
1818

1919
steps:
2020
- uses: actions/checkout@v4
21-
- name: Set up Python 3.10
21+
- name: Set up Python 3.11
2222
uses: actions/setup-python@v5
2323
with:
24-
python-version: "3.10"
24+
python-version: "3.11"
2525

2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip setuptools
2929
3030
- name: Install cibuildwheel
3131
run: |
32-
python -m pip install cibuildwheel==2.16.4
32+
python -m pip install cibuildwheel==2.23.3
3333
3434
- name: Set up QEMU
3535
if: runner.os == 'Linux'

RELEASES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
- Clean documentation for `gromov`, `lp` and `unbalanced` folders (PR #710)
2727
- Clean references in documentation (PR #722)
2828
- Clean documentation for `ot.gromov.gromov_wasserstein` (PR #737)
29+
- Debug wheels building (PR #739)
2930

3031
## 0.9.5
3132

0 commit comments

Comments
 (0)