File tree 3 files changed +7
-6
lines changed
3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,11 @@ jobs:
30
30
31
31
- name : Install cibuildwheel
32
32
run : |
33
- python -m pip install cibuildwheel==2.14.1
33
+ python -m pip install cibuildwheel==2.16.2
34
34
35
35
- name : Build wheels
36
36
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)
38
38
run : |
39
39
python -m cibuildwheel --output-dir wheelhouse
40
40
65
65
66
66
- name : Install cibuildwheel
67
67
run : |
68
- python -m pip install cibuildwheel==2.14.1
68
+ python -m pip install cibuildwheel==2.16.2
69
69
70
70
- name : Set up QEMU
71
71
if : runner.os == 'Linux'
75
75
76
76
- name : Build wheels
77
77
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)
79
79
CIBW_ARCHS_LINUX : auto aarch64 # force aarch64 with QEMU
80
80
CIBW_ARCHS_MACOS : x86_64 universal2 arm64
81
81
run : |
Original file line number Diff line number Diff line change 29
29
30
30
- name : Install cibuildwheel
31
31
run : |
32
- python -m pip install cibuildwheel==2.14.1
32
+ python -m pip install cibuildwheel==2.16.2
33
33
34
34
- name : Set up QEMU
35
35
if : runner.os == 'Linux'
39
39
40
40
- name : Build wheels
41
41
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)
43
43
CIBW_BEFORE_BUILD : " pip install numpy cython"
44
44
CIBW_ARCHS_LINUX : auto aarch64 # force aarch64 with QEMU
45
45
CIBW_ARCHS_MACOS : x86_64 universal2 arm64
Original file line number Diff line number Diff line change 10
10
+ The ` convolutional_barycenter2d ` and ` convolutional_barycenter2d_debiased ` functions now work with different devices.. (PR #533 )
11
11
+ New API for Gromov-Wasserstein solvers with ` ot.solve_gromov ` function (PR #536 )
12
12
+ 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 )
13
14
+ Upgraded unbalanced OT solvers for more flexibility (PR #539 )
14
15
15
16
#### Closed issues
You can’t perform that action at this time.
0 commit comments