We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed1c9fd commit a164aa2Copy full SHA for a164aa2
pyproject.toml
@@ -12,7 +12,8 @@ authors = [
12
dependencies = [
13
"cloud-sql-python-connector[asyncpg] >= 1.10.0, <2.0.0",
14
"langchain-core>=0.2.36, <1.0.0 ",
15
- "numpy>=1.24.4, <2.0.0",
+ "numpy>=1.24.4, <3.0.0; python_version > '3.9'",
16
+ "numpy>=1.24.4, <=2.0.2; python_version <= '3.9'",
17
"pgvector>=0.2.5, <1.0.0",
18
"SQLAlchemy[asyncio]>=2.0.25, <3.0.0"
19
]
requirements.txt
@@ -1,5 +1,6 @@
1
cloud-sql-python-connector[asyncpg]==1.17.0
2
langchain-core==0.3.40
3
-numpy==1.26.4
+numpy==2.2.3; python_version > "3.9"
4
+numpy== 2.0.2; python_version <= "3.9"
5
pgvector==0.3.6
6
SQLAlchemy[asyncio]==2.0.38
0 commit comments