Skip to content

Commit

Permalink
move development dependencies to a requirements file
Browse files Browse the repository at this point in the history
This makes it easier to update the pinned versions using pip freeze
output.
  • Loading branch information
dhellmann committed Dec 19, 2024
1 parent 35da0e7 commit 4fb2cc8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
7 changes: 7 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
astpretty==2.1.0
flake8==7.1.1
flake8-debug==0.2.0
isort==5.13.2
mccabe==0.7.0
pycodestyle==2.12.1
pyflakes==3.2.0
8 changes: 2 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,13 @@ commands=
--log-level DEBUG

[testenv:style]
deps =
isort>=5.0.1
deps = -r requirements-dev.txt
commands =
isort .
skip_install = true

[testenv:linter]
deps=
flake8==4.0.1
flake8-debug==0.1.0
isort>=5.0.1
deps = -r requirements-dev.txt
setenv =
BUILD=linter
commands =
Expand Down

0 comments on commit 4fb2cc8

Please sign in to comment.