Skip to content

Commit

Permalink
Update requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
christianwgd committed Feb 24, 2024
1 parent 625e38d commit 10f1b96
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Django==4.2.7
django-bootstrap5==23.3
Django==4.2.10
django-bootstrap5==23.4
django-bootstrap-modal-forms==3.0.4
django-avatar==8.0.0
requests==2.31.0
Expand Down
6 changes: 3 additions & 3 deletions ruff.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Enable flake8-bugbear (`B`) rules.
select = [
lint.select = [
"E", "F", "B", "PL", "S", "W", "N", "G", "C4", "EM",
"ISC", "ICN", "PIE", "T20", "PYI", "PT", "RET", "INT", "RUF"
]

line-length = 120

ignore = [
lint.ignore = [
"B905", # `zip()` without an explicit `strict=` parameter
"PT009", # Use a regular `assert` instead of unittest-style `{assertion}`
"S308", # Use of `mark_safe` may expose cross-site scripting vulnerabilities
Expand All @@ -18,6 +18,6 @@ ignore = [
]

# Ignore `E501` (line length) in all `__init__.py` and migration files
[per-file-ignores]
[lint.per-file-ignores]
"__init__.py" = ["E501"]
"**/migrations/*.py" = ["E501"]
8 changes: 4 additions & 4 deletions test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
django-extensions==3.2.3
Faker==20.0.0
pytest==7.4.3
Faker==23.2.1
pytest==8.0.1
pytest-cov==4.1.0
pytest-django==4.7.0
ruff==0.1.5
pytest-django==4.8.0
ruff==0.2.2

0 comments on commit 10f1b96

Please sign in to comment.