summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan van der Walt <stefanv@berkeley.edu>2023-03-14 13:01:17 -0700
committerStefan van der Walt <stefanv@berkeley.edu>2023-03-14 14:17:11 -0700
commit8eaf3f381e59cdeee58240666a1e52527ca3f38d (patch)
tree94e3cf68fb817ae02a1a8ca9e46d012221b3ebb2
parent486878b37fc7439a3b2b87747f50db9b62fea8eb (diff)
downloadnumpy-8eaf3f381e59cdeee58240666a1e52527ca3f38d.tar.gz
Pin devpy
The package will soon change to `spin`, so pinning here to avoid any disruption
-rw-r--r--build_requirements.txt2
-rwxr-xr-xdev.py2
-rw-r--r--pyproject.toml4
3 files changed, 4 insertions, 4 deletions
diff --git a/build_requirements.txt b/build_requirements.txt
index b2d55a73e..e6f25f26d 100644
--- a/build_requirements.txt
+++ b/build_requirements.txt
@@ -2,4 +2,4 @@ meson-python>=0.10.0
Cython>=0.29.30,<3.0
wheel==0.38.1
ninja
-git+https://github.com/scientific-python/devpy
+git+https://github.com/scientific-python/devpy@v0.1
diff --git a/dev.py b/dev.py
index 205014938..002885d49 100755
--- a/dev.py
+++ b/dev.py
@@ -14,6 +14,6 @@ try:
except ImportError:
print("Cannot import devpy; please install it using")
print()
- print(" pip install git+https://github.com/scientific-python/devpy")
+ print(" pip install git+https://github.com/scientific-python/devpy@v0.1")
print()
sys.exit(1)
diff --git a/pyproject.toml b/pyproject.toml
index 1e443c507..18be65b04 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -179,5 +179,5 @@ environment = { OPENBLAS64_="", OPENBLAS="openblas", NPY_USE_BLAS_ILP64="0", CFL
package = 'numpy'
[tool.devpy.commands]
-"Build" = ["devpy.build", "devpy.test"]
-"Environments" = ["devpy.shell", "devpy.ipython", "devpy.python"]
+"Build" = ["devpy.cmds.meson.build", "devpy.cmds.meson.test"]
+"Environments" = ["devpy.cmds.meson.shell", "devpy.cmds.meson.ipython", "devpy.cmds.meson.python"]