Skip to content

Commit 0ea1da9

Browse files
committed
Force numpy<2 and set up v0.7.1
1 parent c71c4b3 commit 0ea1da9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

include/gridpp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#endif
1414
#include <exception>
1515

16-
#define GRIDPP_VERSION "0.7.0"
16+
#define GRIDPP_VERSION "0.7.1"
1717
#define __version__ GRIDPP_VERSION
1818

1919
namespace gridpp {

swig/python-packaging/setup.in.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def run(self):
108108
# However, since the earliest precompiled numpy versions have been used when compiling gridpp,
109109
# it is unlikely the user will have an older version of numpy
110110
# install_requires=['numpy<=1.12.1; python_version < "3"'],
111-
install_requires=['numpy'],
111+
install_requires=['numpy<2'],
112112

113113
test_suite="gridpp.tests",
114114
ext_modules = [module],

swig/python/setup.in.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def finalize_options(self):
103103
# your project is installed. For an analysis of "install_requires" vs pip's
104104
# requirements files see:
105105
# https://packaging.python.org/en/latest/requirements.html
106-
install_requires=['numpy'],
106+
install_requires=['numpy<2'],
107107

108108
# List additional groups of dependencies here (e.g. development
109109
# dependencies). You can install these using the following syntax,

0 commit comments

Comments
 (0)