File tree Expand file tree Collapse file tree 5 files changed +10
-9
lines changed Expand file tree Collapse file tree 5 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 26
26
with :
27
27
python-version : 3.x
28
28
- name : Build wheels
29
- uses : pypa/cibuildwheel@v2.16.5
29
+ uses : pypa/cibuildwheel@v2.19.2
30
30
env :
31
31
CIBW_SKIP : pp* cp36-* cp37-* cp38-* *-musllinux*
32
32
CIBW_ARCHS : ${{ matrix.architecture }}
49
49
with :
50
50
python-version : 3.x
51
51
- name : Build wheels
52
- uses : pypa/cibuildwheel@v2.16.5
52
+ uses : pypa/cibuildwheel@v2.19.2
53
53
env :
54
54
CIBW_SKIP : pp* cp36-* cp37-* cp38-* *-musllinux*
55
55
CIBW_ARCHS : ${{ matrix.architecture }}
79
79
python-version : 3.x
80
80
81
81
- name : Build wheels
82
- uses : pypa/cibuildwheel@v2.16.5
82
+ uses : pypa/cibuildwheel@v2.19.2
83
83
env :
84
84
CIBW_SKIP : pp* cp36-* cp37-* cp38-* *-musllinux*
85
85
CIBW_ARCHS : aarch64
@@ -111,7 +111,7 @@ jobs:
111
111
name : sdist
112
112
- uses : actions/setup-python@v5
113
113
with :
114
- python-version : 3.11
114
+ python-version : 3.12
115
115
- run : |
116
116
pip install pip -U
117
117
ls
Original file line number Diff line number Diff line change @@ -74,8 +74,8 @@ test = [
74
74
" pytest-cov" ,
75
75
" cython" , # needed at run time for coverage
76
76
# needed to build the plugins
77
- " flit_core" ,
78
77
" pip" ,
78
+ " flit_core" ,
79
79
" -e fluidfft-builder @ file:///${PROJECT_ROOT}/plugins/fluidfft-builder" ,
80
80
]
81
81
dev = [" ipython" ]
@@ -89,6 +89,7 @@ doc = [
89
89
" pandas" ,
90
90
" pyfftw" ,
91
91
# needed to create the dummy modules
92
+ " flit_core" ,
92
93
" -e fluidfft-builder @ file:///${PROJECT_ROOT}/plugins/fluidfft-builder" ,
93
94
]
94
95
lint = [" black" , " pylint" ]
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ def get_simple_2d_mpi_method():
60
60
method = "fft2d.mpi_with_fftwmpi2d"
61
61
try :
62
62
import_fft_class (method )
63
- except ImportError :
63
+ except ( ImportError , ValueError ) :
64
64
method = "fft2d.mpi_with_fftw1d"
65
65
return method
66
66
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ def get_simple_3d_mpi_method():
121
121
method = "fft3d.mpi_with_fftwmpi3d"
122
122
try :
123
123
import_fft_class (method )
124
- except ImportError :
124
+ except ( ImportError , ValueError ) :
125
125
method = "fft3d.mpi_with_fftw1d"
126
126
return method
127
127
You can’t perform that action at this time.
0 commit comments