Skip to content

Commit 35f6bdb

Browse files
add numpy<2 dependency (#3)
1 parent e397a61 commit 35f6bdb

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
**1.0.1 - 8/1/25**
2+
3+
- Add dependency: numpy<2.0.0
4+
15
**1.0.0 - 7/31/25**
26

37
- Initial release

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
# Define commonly-used pins here to be used in other repositories
1818
# e.g. vivarium_dependencies[numpy,pandas]>=1.2.0,<2.0.0
1919
extras_require = {
20-
"numpy": ["numpy<2.0.0"],
20+
"numpy": ["numpy"],
21+
"numpy_lt_2": ["numpy<2.0.0"],
2122
"pandas": [
2223
"pandas",
2324
"pandas-stubs<=2.2.3.250308",

0 commit comments

Comments
 (0)