From e33bafbd19631433c1e88484bc7d4c610d18a75c Mon Sep 17 00:00:00 2001 From: krzywon Date: Tue, 18 Jun 2024 10:04:30 -0400 Subject: [PATCH] Set number to 2.0 --- .github/workflows/test.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b066e486..2a45c789 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,7 +40,7 @@ jobs: python -m pip install --upgrade pip python -m pip install wheel setuptools python -m pip install mako - python -m pip install numpy<2 scipy matplotlib docutils pytest sphinx bumps unittest-xml-reporting tinycc + python -m pip install numpy<2.0 scipy matplotlib docutils pytest sphinx bumps unittest-xml-reporting tinycc - name: setup pyopencl on Linux + macOS if: ${{ matrix.os != 'windows-latest' }} diff --git a/setup.py b/setup.py index c04a4a13..0c7a7729 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def find_version(package): return version[1:-1] raise RuntimeError("Could not read version from %s/__init__.py"%package) -install_requires = ['numpy<2', 'scipy'] +install_requires = ['numpy<2.0', 'scipy'] with open('README.rst') as fid: long_description = fid.read()