File tree Expand file tree Collapse file tree 8 files changed +10
-9
lines changed
asciidtype/asciidtype/src
metadatadtype/metadatadtype/src Expand file tree Collapse file tree 8 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 18
18
python-version : " 3.10"
19
19
- name : Install build and test dependencies
20
20
run : |
21
- pip install -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy
22
- pip install --pre --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple pandas
23
21
python -m pip install -U pip build pytest unyt wheel meson ninja meson-python patchelf
22
+ pip uninstall -y numpy
23
+ pip install -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy
24
+ pip install --no-deps -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple pandas
24
25
- name : Install asciidtype
25
26
working-directory : asciidtype
26
27
run : |
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ PyInit__asciidtype_main(void)
22
22
return NULL ;
23
23
}
24
24
25
- if (import_experimental_dtype_api (13 ) < 0 ) {
25
+ if (import_experimental_dtype_api (14 ) < 0 ) {
26
26
return NULL ;
27
27
}
28
28
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ PyInit__metadatadtype_main(void)
21
21
if (_import_array () < 0 ) {
22
22
return NULL ;
23
23
}
24
- if (import_experimental_dtype_api (13 ) < 0 ) {
24
+ if (import_experimental_dtype_api (14 ) < 0 ) {
25
25
return NULL ;
26
26
}
27
27
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ PyInit__mpfdtype_main(void)
22
22
if (_import_array () < 0 ) {
23
23
return NULL ;
24
24
}
25
- if (import_experimental_dtype_api (13 ) < 0 ) {
25
+ if (import_experimental_dtype_api (14 ) < 0 ) {
26
26
return NULL ;
27
27
}
28
28
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ PyInit__quaddtype_main(void)
23
23
return NULL ;
24
24
25
25
// Fail to init if the experimental DType API version 5 isn't supported
26
- if (import_experimental_dtype_api (13 ) < 0 ) {
26
+ if (import_experimental_dtype_api (14 ) < 0 ) {
27
27
PyErr_SetString (PyExc_ImportError ,
28
28
"Error encountered importing the experimental dtype API." );
29
29
return NULL ;
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ PyInit__main(void)
94
94
{
95
95
import_array ();
96
96
97
- if (import_experimental_dtype_api (13 ) < 0 ) {
97
+ if (import_experimental_dtype_api (14 ) < 0 ) {
98
98
return NULL ;
99
99
}
100
100
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ def unicode_array():
22
22
"capitalize" ,
23
23
"expandtabs" ,
24
24
"isalnum" ,
25
- "isalpha" ,
25
+ # "isalpha", (10-23-23) skipped temporarily since it is now a ufunc
26
26
"isdigit" ,
27
27
"islower" ,
28
28
"isspace" ,
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ PyInit__unytdtype_main(void)
21
21
if (_import_array () < 0 ) {
22
22
return NULL ;
23
23
}
24
- if (import_experimental_dtype_api (13 ) < 0 ) {
24
+ if (import_experimental_dtype_api (14 ) < 0 ) {
25
25
return NULL ;
26
26
}
27
27
You can’t perform that action at this time.
0 commit comments