Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonxslays committed Apr 5, 2022
1 parent b6f487a commit b35b6aa
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
6 changes: 6 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,3 +161,9 @@ def check_safety(session: nox.Session) -> None:
def check_security(session: nox.Session) -> None:
session.install(*fetch_installs("Security"))
session.run("bandit", "-qr", *CHECK_PATHS, "-s", "B101")


# @nox.session(reuse_venv=True) # type: ignore
# def dependencies(session: nox.Session) -> None:
# session.install(*fetch_installs("Dependencies"))
# session.run("deputil", "update", "requirements-dev.txt")
11 changes: 7 additions & 4 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,29 @@ furo
sphinx<5,>=4

# Formatting
black~=22.1.0
black~=22.3.0

# Imports
flake8~=4.0.1
isort~=5.10.0

# Typing
mypy==0.931
mypy==0.942
types-toml~=0.10.3

# Spelling
codespell~=2.1.0

# Tests
coverage~=6.3.1; python_version > "3.6"
coverage~=6.3.2; python_version > "3.6"
coverage~=6.2.0; python_version == "3.6"
pytest~=7.0.0
pytest~=7.1.1

# Safety
safety~=1.10.3; python_version < "3.11"

# Security
bandit~=1.7.2

# Dependencies
deputil~=0.2.0

0 comments on commit b35b6aa

Please sign in to comment.