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 1818 python-version : " 3.10"
1919 - name : Install build and test dependencies
2020 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
2321 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
2425 - name : Install asciidtype
2526 working-directory : asciidtype
2627 run : |
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ PyInit__asciidtype_main(void)
2222 return NULL ;
2323 }
2424
25- if (import_experimental_dtype_api (13 ) < 0 ) {
25+ if (import_experimental_dtype_api (14 ) < 0 ) {
2626 return NULL ;
2727 }
2828
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ PyInit__metadatadtype_main(void)
2121 if (_import_array () < 0 ) {
2222 return NULL ;
2323 }
24- if (import_experimental_dtype_api (13 ) < 0 ) {
24+ if (import_experimental_dtype_api (14 ) < 0 ) {
2525 return NULL ;
2626 }
2727
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ PyInit__mpfdtype_main(void)
2222 if (_import_array () < 0 ) {
2323 return NULL ;
2424 }
25- if (import_experimental_dtype_api (13 ) < 0 ) {
25+ if (import_experimental_dtype_api (14 ) < 0 ) {
2626 return NULL ;
2727 }
2828
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ PyInit__quaddtype_main(void)
2323 return NULL ;
2424
2525 // 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 ) {
2727 PyErr_SetString (PyExc_ImportError ,
2828 "Error encountered importing the experimental dtype API." );
2929 return NULL ;
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ PyInit__main(void)
9494{
9595 import_array ();
9696
97- if (import_experimental_dtype_api (13 ) < 0 ) {
97+ if (import_experimental_dtype_api (14 ) < 0 ) {
9898 return NULL ;
9999 }
100100
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ def unicode_array():
2222 "capitalize" ,
2323 "expandtabs" ,
2424 "isalnum" ,
25- "isalpha" ,
25+ # "isalpha", (10-23-23) skipped temporarily since it is now a ufunc
2626 "isdigit" ,
2727 "islower" ,
2828 "isspace" ,
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ PyInit__unytdtype_main(void)
2121 if (_import_array () < 0 ) {
2222 return NULL ;
2323 }
24- if (import_experimental_dtype_api (13 ) < 0 ) {
24+ if (import_experimental_dtype_api (14 ) < 0 ) {
2525 return NULL ;
2626 }
2727
You can’t perform that action at this time.
0 commit comments