Skip to content

Commit

Permalink
fix numpy-user-dtypes CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ngoldbaum committed Oct 23, 2023
1 parent b5b7ca2 commit 58ac3fc
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion asciidtype/asciidtype/src/asciidtype_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ PyInit__asciidtype_main(void)
return NULL;
}

if (import_experimental_dtype_api(13) < 0) {
if (import_experimental_dtype_api(14) < 0) {
return NULL;
}

Expand Down
2 changes: 1 addition & 1 deletion metadatadtype/metadatadtype/src/metadatadtype_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ PyInit__metadatadtype_main(void)
if (_import_array() < 0) {
return NULL;
}
if (import_experimental_dtype_api(13) < 0) {
if (import_experimental_dtype_api(14) < 0) {
return NULL;
}

Expand Down
2 changes: 1 addition & 1 deletion mpfdtype/mpfdtype/src/mpfdtype_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ PyInit__mpfdtype_main(void)
if (_import_array() < 0) {
return NULL;
}
if (import_experimental_dtype_api(13) < 0) {
if (import_experimental_dtype_api(14) < 0) {
return NULL;
}

Expand Down
2 changes: 1 addition & 1 deletion quaddtype/quaddtype/src/quaddtype_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ PyInit__quaddtype_main(void)
return NULL;

// Fail to init if the experimental DType API version 5 isn't supported
if (import_experimental_dtype_api(13) < 0) {
if (import_experimental_dtype_api(14) < 0) {
PyErr_SetString(PyExc_ImportError,
"Error encountered importing the experimental dtype API.");
return NULL;
Expand Down
2 changes: 1 addition & 1 deletion stringdtype/stringdtype/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ PyInit__main(void)
{
import_array();

if (import_experimental_dtype_api(13) < 0) {
if (import_experimental_dtype_api(14) < 0) {
return NULL;
}

Expand Down
2 changes: 1 addition & 1 deletion stringdtype/tests/test_char.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def unicode_array():
"capitalize",
"expandtabs",
"isalnum",
"isalpha",
# "isalpha", (10-23-23) skipped temporarily since it is now a ufunc
"isdigit",
"islower",
"isspace",
Expand Down
2 changes: 1 addition & 1 deletion unytdtype/unytdtype/src/unytdtype_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ PyInit__unytdtype_main(void)
if (_import_array() < 0) {
return NULL;
}
if (import_experimental_dtype_api(13) < 0) {
if (import_experimental_dtype_api(14) < 0) {
return NULL;
}

Expand Down

0 comments on commit 58ac3fc

Please sign in to comment.