Skip to content

Commit

Permalink
[Hotfix] Added isort, black, flake8 and tox to dev dependencies
Browse files Browse the repository at this point in the history
Introduced optional dev dependencies, which aren't needed for
installing the base functionality.
  • Loading branch information
tbkr committed Dec 18, 2024
1 parent fc0dc38 commit 89cf61f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
15 changes: 9 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,21 @@ requires-python = ">=3.9"
dependencies = [
"cffi",
"findlibs",
"isort",
"black",
"flake8",
"tox>=4.19",
"eccodes"
"eccodes>=1.5.0"
]

[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-flakes"
"pytest-flakes",
]

dev = [
"tox>=4.19",
"isort",
"black",
"flake8",
]

[tool.setuptools.packages.find]
Expand Down
2 changes: 1 addition & 1 deletion src/pyfdb/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.0"
__version__ = "0.1.1"

0 comments on commit 89cf61f

Please sign in to comment.