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 974e4ec commit 2560b29Copy full SHA for 2560b29
pyproject.toml
@@ -18,7 +18,12 @@ classifiers = [
18
"Programming Language :: Python :: 3", # removed 3.8
19
"Programming Language :: Python :: 3.9",
20
]
21
+
22
# We have both project and tool.poetry.dependencies. Should we remove one?
23
+# tool.poetry.dependencies is a convenience thing for poetry users.
24
+# project dependencies function similarly to requirements.txt,
25
+# `pip install .` will pull from pyproject.toml dependencies
26
27
dependencies = [
28
"backoff~=2.2.1",
29
"joblib~=1.3.2",
@@ -77,7 +82,7 @@ python = ">=3.9,<3.12"
77
82
pydantic = "2.5.0"
78
83
backoff = "^2.2.1"
79
84
joblib = "^1.3.2"
80
-openai = "^0.28.1"
85
+openai = ">=0.28.1,<2.0.0"
81
86
pandas = "^2.1.1"
87
regex = "^2023.10.3"
88
ujson = "^5.8.0"
0 commit comments