Skip to content

Commit f2a19d1

Browse files
committed
Restrict numpy version to <2.0.0
Updated numpy dependency in pyproject.toml and requirements.txt to limit versions to below 2.0.0, likely to prevent compatibility issues with numpy 2.x.
1 parent 1f211ad commit f2a19d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dependencies = [
2424
"streamlit>=1.24.0",
2525
"pandas>=2.0.0",
2626
"plotly>=5.13.0",
27-
"numpy>=1.24.0",
27+
"numpy>=1.24.0,<2.0.0",
2828
"pydantic>=2.0.0",
2929
"pydantic-settings>=2.0.0",
3030
"httpx>=0.25.0",

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
streamlit>=1.24.0
33
pandas>=2.0.0
44
plotly>=5.13.0
5-
numpy>=1.24.0
5+
numpy>=1.24.0,<2.0.0
66

77
# Configuration management
88
pydantic>=2.0.0

0 commit comments

Comments
 (0)