File tree Expand file tree Collapse file tree 10 files changed +10
-10
lines changed
asciidtype/asciidtype/src
metadatadtype/metadatadtype/src Expand file tree Collapse file tree 10 files changed +10
-10
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/scipy-wheels -nightly/simple numpy
21
+ pip install -i https://pypi.anaconda.org/scientific-python -nightly-wheels /simple numpy
22
22
python -m pip install -U pip build pytest unyt wheel meson ninja meson-python patchelf
23
23
- name : Install asciidtype
24
24
working-directory : asciidtype
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 (10 ) < 0 ) {
25
+ if (import_experimental_dtype_api (11 ) < 0 ) {
26
26
return NULL ;
27
27
}
28
28
Original file line number Diff line number Diff line change 22
22
// uninstalling the project. See asv.conf.json documentation.
23
23
//
24
24
"install_command" : [
25
- " pip install -i https://pypi.anaconda.org/scipy-wheels -nightly/simple numpy" ,
25
+ " pip install -i https://pypi.anaconda.org/scientific-python -nightly-wheels /simple numpy" ,
26
26
" pip install meson-python patchelf wheel" ,
27
27
" in-dir={conf_dir} pip install ../asciidtype/ --no-build-isolation" ,
28
28
" in-dir={conf_dir} pip install ../stringdtype/ --no-build-isolation"
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 (10 ) < 0 ) {
24
+ if (import_experimental_dtype_api (11 ) < 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 (10 ) < 0 ) {
25
+ if (import_experimental_dtype_api (11 ) < 0 ) {
26
26
return NULL ;
27
27
}
28
28
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ isolation so that the `quaddtype` can link against the experimental dtype API
9
9
headers, which aren't in the latest releases of ` numpy ` :
10
10
11
11
``` bash
12
- pip install -i https://pypi.anaconda.org/scipy-wheels -nightly/simple numpy
12
+ pip install -i https://pypi.anaconda.org/scientific-python -nightly-wheels /simple numpy
13
13
pip install . --no-build-isolation
14
14
```
15
15
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 (10 ) < 0 ) {
26
+ if (import_experimental_dtype_api (11 ) < 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 @@ -17,7 +17,7 @@ It is important to have the latest development version of numpy installed.
17
17
Nightly wheels work well for this purpose, and can be installed easily:
18
18
19
19
``` bash
20
- $ pip install -i https://pypi.anaconda.org/scipy-wheels -nightly/simple numpy
20
+ $ pip install -i https://pypi.anaconda.org/scientific-python -nightly-wheels /simple numpy
21
21
```
22
22
23
23
Build with meson, create a wheel, and install it.
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ PyInit__main(void)
91
91
if (_import_array () < 0 ) {
92
92
return NULL ;
93
93
}
94
- if (import_experimental_dtype_api (10 ) < 0 ) {
94
+ if (import_experimental_dtype_api (11 ) < 0 ) {
95
95
return NULL ;
96
96
}
97
97
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 (10 ) < 0 ) {
24
+ if (import_experimental_dtype_api (11 ) < 0 ) {
25
25
return NULL ;
26
26
}
27
27
You can’t perform that action at this time.
0 commit comments