Skip to content

Commit

Permalink
revert pyproject changes
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed Dec 11, 2024
1 parent 362ae38 commit 94bb1fd
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,7 @@ dynamic = ["version"]

[project.optional-dependencies]
dev = ["flopy4[lint,test,build]"]
build = [
"build",
"twine",
]
lint = [
"ruff"
]
lint = ["ruff"]
test = [
"flopy4[lint]",
"coverage",
Expand All @@ -72,6 +66,7 @@ test = [
"pytest-dotenv",
"pytest-xdist",
]
build = ["build", "twine"]

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

[tool.pixi.feature.dev.tasks]
[tool.pixi.feature.build.tasks]
build = { cmd = "python -m build" }
lint = { cmd = "ruff check ." }

[tool.pixi.feature.test.tasks]
test = { cmd = "pytest -v -n auto" }

[tool.pixi.feature.lint.tasks]
lint = { cmd = "ruff check ." }

0 comments on commit 94bb1fd

Please sign in to comment.