We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f542530 commit 235d1ecCopy full SHA for 235d1ec
2 files changed
.github/workflows/pipeline.yml
@@ -43,7 +43,7 @@ jobs:
43
- name: Install
44
run: |
45
python -m pip install --upgrade pip
46
- pip install -e ./[testing]
+ pip install -e . --group testing
47
48
- name: Test
49
if: always()
pyproject.toml
@@ -36,7 +36,7 @@ homepage = "https://jugit.fz-juelich.de/IBG-1/ModSim/cadet/CADET-Python-Simulato
36
"Bug Tracker" = "https://jugit.fz-juelich.de/IBG-1/ModSim/cadet/CADET-Python-Simulator/Issues"
37
38
39
-[project.optional-dependencies]
+[dependency-groups]
40
testing = [
41
"setuptools",
42
"pytest",
@@ -56,8 +56,8 @@ docs = [
56
"myst-nb>=0.17.1",
57
]
58
dev = [
59
- "CADET-Python-Simulator.testing",
60
- "CADET-Python-Simulator.docs",
+ {include-group = "testing"},
+ {include-group = "docs"},
61
"ruff",
62
63
0 commit comments