Skip to content

Commit

Permalink
chore: tox target for checking dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
angrybayblade committed Oct 27, 2023
1 parent a1e154b commit 7351ff3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ gym = "==0.15.6"
hypothesis = "==6.21.6"
ipfshttpclient = "==0.8.0a2"
liccheck = "==0.6.0"
matplotlib = "<3.4,>=3.3.0"
memory-profiler = "==0.57.0"
# ^ still used?
numpy = ">=1.18.1"
Expand Down Expand Up @@ -59,3 +58,5 @@ construct = "<=2.10.61"
werkzeug = "*"
pytest-asyncio = "*"
multidict = "*"
toml = "==0.10.2"
matplotlib = "<3.4,>=3.3.0"
10 changes: 10 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -477,3 +477,13 @@ deps =
docspec==2.2.1
docspec-python==2.2.1
commands = {toxinidir}/scripts/generate_api_docs.py

[testenv:update-dependencies]
deps =
toml==0.10.2
commands = {toxinidir}/scripts/check_dependencies.py

[testenv:check-dependencies]
deps =
toml==0.10.2
commands = {toxinidir}/scripts/check_dependencies.py --check

0 comments on commit 7351ff3

Please sign in to comment.