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 2165ea1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 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"
]

[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 2165ea1

Please sign in to comment.