From d33217bb19ab8a71ab8c3ee8289a4b7ca7ea7613 Mon Sep 17 00:00:00 2001 From: J08nY Date: Mon, 24 Jul 2023 14:52:02 +0200 Subject: Disallow numpy 1.25 for a while. --- .github/workflows/lint.yml | 2 +- .github/workflows/perf.yml | 2 +- .github/workflows/test.yml | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a74b563..a947379 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -35,7 +35,7 @@ jobs: sudo apt-get install -y $PS_PACKAGES $OTHER_PACKAGES $GMP_PACKAGES - name: Install numpy run: | - pip install "numpy<1.25.1" + pip install "numpy<1.25" - name: Install picoscope bindings run: | git clone https://github.com/colinoflynn/pico-python && cd pico-python && python setup.py install && cd .. diff --git a/.github/workflows/perf.yml b/.github/workflows/perf.yml index 674ac5c..4eff89e 100644 --- a/.github/workflows/perf.yml +++ b/.github/workflows/perf.yml @@ -45,7 +45,7 @@ jobs: if [ $USE_GMP == 1 ]; then sudo apt-get install -y $GMP_PACKAGES; fi - name: Install numpy run: | - pip install "numpy<1.25.1" + pip install "numpy<1.25" - name: Install picoscope bindings run: | git clone https://github.com/colinoflynn/pico-python && cd pico-python && python setup.py install && cd .. diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 515d9c1..d7aed43 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,7 +45,7 @@ jobs: if [ $USE_GMP == 1 ]; then sudo apt-get install -y $GMP_PACKAGES; fi - name: Install numpy run: | - pip install "numpy<1.25.1" + pip install "numpy<1.25" - name: Install picoscope bindings run: | git clone https://github.com/colinoflynn/pico-python && cd pico-python && python setup.py install && cd .. diff --git a/setup.py b/setup.py index 1a23727..03ff8f5 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ setup( # install_package_data=True, python_requires='>=3.8', install_requires=[ - "numpy==1.24.3", + "numpy==1.24.4", "scipy", "sympy>=1.7.1", "atpublic", -- cgit v1.3.1