Skip to content

Commit 94bb1fd

Browse files
committed
revert pyproject changes
1 parent 362ae38 commit 94bb1fd

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

pyproject.toml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,7 @@ dynamic = ["version"]
5151

5252
[project.optional-dependencies]
5353
dev = ["flopy4[lint,test,build]"]
54-
build = [
55-
"build",
56-
"twine",
57-
]
58-
lint = [
59-
"ruff"
60-
]
54+
lint = ["ruff"]
6155
test = [
6256
"flopy4[lint]",
6357
"coverage",
@@ -72,6 +66,7 @@ test = [
7266
"pytest-dotenv",
7367
"pytest-xdist",
7468
]
69+
build = ["build", "twine"]
7570

7671
[tool.setuptools]
7772
include-package-data = true
@@ -139,7 +134,11 @@ test312 = { features = ["py312", "test"], solve-group = "py312" }
139134
test313 = { features = ["py313", "test"], solve-group = "py313" }
140135
dev = { features = ["py313", "test", "lint", "build"], solve-group = "py313" }
141136

142-
[tool.pixi.feature.dev.tasks]
137+
[tool.pixi.feature.build.tasks]
143138
build = { cmd = "python -m build" }
144-
lint = { cmd = "ruff check ." }
139+
140+
[tool.pixi.feature.test.tasks]
145141
test = { cmd = "pytest -v -n auto" }
142+
143+
[tool.pixi.feature.lint.tasks]
144+
lint = { cmd = "ruff check ." }

0 commit comments

Comments
 (0)