File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -104,13 +104,10 @@ jobs:
104
104
run : |
105
105
python -m cibuildwheel --output-dir dist
106
106
env :
107
- CIBW_BUILD : " pp3? -*"
107
+ CIBW_BUILD : " pp37 -*"
108
108
CIBW_BEFORE_BUILD : pip install certifi numpy==${{ env.min-numpy-version }}
109
109
CIBW_ARCHS : ${{ matrix.cibw_archs }}
110
- if : >
111
- runner.os != 'Windows' && (
112
- startsWith(github.ref, 'refs/heads/v3.3') ||
113
- startsWith(github.ref, 'refs/tags/v3.3') )
110
+ if : runner.os != 'Windows' && matrix.cibw_archs != 'aarch64'
114
111
115
112
- name : Validate that LICENSE files are included in wh
AA8F
eels
116
113
run : |
Original file line number Diff line number Diff line change 21
21
#include " _backend_agg_basic_types.h"
22
22
#include " numpy_cpp.h"
23
23
24
+ /* Compatibility for PyPy3.7 before 7.3.4. */
25
+ #ifndef Py_DTSF_ADD_DOT_0
26
+ #define Py_DTSF_ADD_DOT_0 0x2
27
+ #endif
28
+
24
29
struct XY
25
30
{
26
31
double x;
You can’t perform that action at this time.
0 commit comments