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 663eff8 commit 8862287Copy full SHA for 8862287
2 files changed
.github/workflows/build.yml
@@ -25,7 +25,7 @@ jobs:
25
sudo make install
26
- run: pytest
27
28
- - run: pip install --group dev-optional
+ - run: pip install --group numpy --group scipy
29
30
31
- run: pip install --group typing
pyproject.toml
@@ -31,14 +31,13 @@ dev = [
"SQLAlchemy[asyncio]>=2",
32
"sqlmodel"
33
]
34
-dev-optional = [
35
- "numpy",
36
- "scipy"
37
-]
+numpy = ["numpy"]
+scipy = ["scipy"]
38
typing = [
39
"mypy",
40
"ty",
41
- {include-group = "dev-optional"}
+ "numpy",
+ "scipy"
42
43
44
[tool.pytest.ini_options]
0 commit comments