From b6ca4b0f56bc95d788c46be5580ebcbbe5aa8e62 Mon Sep 17 00:00:00 2001 From: Max Jones <14077947+maxrjones@users.noreply.github.com> Date: Mon, 29 Jul 2024 19:44:08 -0400 Subject: [PATCH] Pin Numpy<2.0.0 --- README.md | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 50f0de4..68b73e2 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Tests use data generated locally by using `tests/fixtures/generate_test_*.py` sc To run all the tests: ```bash -python -m pip install -e ".[tests]" +python -m pip install -e ".[test]" python -m pytest --cov titiler.xarray --cov-report term-missing -s -vv ``` diff --git a/pyproject.toml b/pyproject.toml index 08abb4a..fca40c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,6 +27,7 @@ dynamic = ["version"] dependencies = [ "cftime", "h5netcdf", + "numpy<2.0.0", "xarray", "rioxarray", "zarr",