Skip to content

Commit 9e8cc56

Browse files
author
Sean Smith
committed
Fix numpy version discrepancy
Signed-off-by: Sean Smith <sean.smith@contextual.ai>
1 parent 9ecd368 commit 9e8cc56

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ dependencies = [
1414
"anyio>=3.5.0, <5",
1515
"distro>=1.7.0, <2",
1616
"sniffio",
17-
"pandas>=2.1.0, <3",
17+
"pandas==2.2.3",
18+
"numpy==2.0.2",
1819
]
1920
requires-python = ">= 3.8"
2021
classifiers = [
@@ -56,7 +57,8 @@ dev-dependencies = [
5657
"importlib-metadata>=6.7.0",
5758
"rich>=13.7.1",
5859
"nest_asyncio==1.6.0",
59-
"pandas",
60+
"pandas==2.2.3",
61+
"numpy==2.0.2",
6062
]
6163

6264
[tool.rye.scripts]

requirements-dev.lock

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,5 +102,7 @@ virtualenv==20.24.5
102102
# via nox
103103
zipp==3.17.0
104104
# via importlib-metadata
105-
pandas==2.1.0
105+
pandas==2.2.3
106106
# via contextual-client
107+
numpy==2.0.2
108+
# via contextual-client

requirements.lock

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,7 @@ typing-extensions==4.12.2
4343
# via contextual-client
4444
# via pydantic
4545
# via pydantic-core
46-
pandas==2.1.0
46+
pandas==2.2.3
47+
# via contextual-client
48+
numpy==2.0.2
4749
# via contextual-client

0 commit comments

Comments
 (0)