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 58fcba0 commit c652f6eCopy full SHA for c652f6e
pyproject.toml
@@ -22,9 +22,13 @@ websockets = ">=13.0"
22
tenacity = ">=8.2.3"
23
cbor2 = ">=5.6.3"
24
StrEnum = "^0.4.15"
25
-pyarrow = { version = ">=14.0.2", extras = ["test", "pandas"] }
26
-pandas = { version = "*", extras = ["test", "pandas"] }
27
-pytest = { version = ">=8.0.2", extras = ["test"] }
+pyarrow = { version = ">=14.0.2", optional = true }
+pandas = { version = "*", optional = true }
+pytest = { version = ">=8.0.2", optional = true }
28
+
29
+[tool.poetry.extras]
30
+test = [ "pytest", "pandas", "pyarrow" ]
31
+pandas = [ "pandas", "pyarrow" ]
32
33
[tool.poetry.group.dev.dependencies]
34
pre-commit = "*"
0 commit comments