Skip to content

Commit 8cf2f28

Browse files
committed
Require numpy < 2.0.0.
1 parent 6115fa0 commit 8cf2f28

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/XmsInterp-CI.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ jobs:
179179
CONAN_BUILD_TYPES: ${{ matrix.build_type }}
180180
CONAN_GCC_VERSIONS: ${{ matrix.compiler-version }}
181181
CONAN_DOCKER_IMAGE: docker.aquaveo.com/aquaveo/conan-docker/conan-gcc${{ matrix.compiler-version }}-py${{ matrix.python-version }}:latest
182-
CONAN_PIP_INSTALL: 'conan-package-tools==0.35.1'
182+
CONAN_PIP_INSTALL: 'conan-package-tools==0.35.1 numpy==1.26.4'
183183
CONAN_PIP_PACKAGE: 'conan==1.41.0'
184184
# Aquapi Variables
185185
AQUAPI_USERNAME: ${{ secrets.AQUAPI_USERNAME_SECRET }}

_package/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
1111

1212
requires = [
13-
'numpy',
13+
'numpy<2.0.0',
1414
'xmscore>=6.0.0',
1515
'xmsgrid>=7.0.0, <8.0.0',
1616
]

0 commit comments

Comments
 (0)