Compare commits

...

3 commits

Author SHA1 Message Date
pre-commit-ci[bot]
1637de04b0 [pre-commit.ci] pre-commit autoupdate
updates:
- [github.com/psf/black: 24.4.2 → 24.8.0](https://github.com/psf/black/compare/24.4.2...24.8.0)
- [github.com/astral-sh/ruff-pre-commit: v0.5.5 → v0.5.6](https://github.com/astral-sh/ruff-pre-commit/compare/v0.5.5...v0.5.6)
- [github.com/tox-dev/pyproject-fmt: 2.1.4 → 2.2.1](https://github.com/tox-dev/pyproject-fmt/compare/2.1.4...2.2.1)
2024-08-05 23:44:13 +00:00
3cb5d8c8c7 update warning ignores 2024-08-05 18:38:57 +00:00
Crocmagnon
22fa2b8d6c Update dependencies 2024-08-05 18:38:57 +00:00
6 changed files with 18 additions and 20 deletions

View file

@ -31,7 +31,7 @@ repos:
- id: django-upgrade - id: django-upgrade
args: [--target-version, "4.1"] args: [--target-version, "4.1"]
- repo: https://github.com/psf/black - repo: https://github.com/psf/black
rev: 24.4.2 rev: 24.8.0
hooks: hooks:
- id: black - id: black
args: [--target-version, py311] args: [--target-version, py311]
@ -40,7 +40,7 @@ repos:
hooks: hooks:
- id: djhtml - id: djhtml
- repo: https://github.com/astral-sh/ruff-pre-commit - repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.5 rev: v0.5.6
hooks: hooks:
- id: ruff - id: ruff
args: [--fix] args: [--fix]
@ -59,7 +59,7 @@ repos:
- eslint@8.36.0 - eslint@8.36.0
- eslint-config-prettier@8.5.0 - eslint-config-prettier@8.5.0
- repo: https://github.com/tox-dev/pyproject-fmt - repo: https://github.com/tox-dev/pyproject-fmt
rev: 2.1.4 rev: 2.2.1
hooks: hooks:
- id: pyproject-fmt - id: pyproject-fmt
- repo: https://github.com/jazzband/pip-tools - repo: https://github.com/jazzband/pip-tools

View file

@ -8,7 +8,7 @@ asgiref==3.8.1
# via # via
# django # django
# django-htmx # django-htmx
attrs==23.2.0 attrs==24.1.0
# via # via
# outcome # outcome
# trio # trio
@ -39,7 +39,7 @@ django-environ==0.11.2
# via -r requirements.in # via -r requirements.in
django-extensions==3.2.3 django-extensions==3.2.3
# via -r requirements.in # via -r requirements.in
django-htmx==1.18.0 django-htmx==1.19.0
# via -r requirements.in # via -r requirements.in
django-linear-migrations==2.13.0 django-linear-migrations==2.13.0
# via -r requirements.in # via -r requirements.in
@ -75,7 +75,7 @@ sortedcontainers==2.4.0
# via trio # via trio
sqlparse==0.5.1 sqlparse==0.5.1
# via django # via django
trio==0.26.0 trio==0.26.1
# via # via
# selenium # selenium
# trio-websocket # trio-websocket

View file

@ -49,6 +49,7 @@ lint.unfixable = [
"T20", "T20",
] ]
lint.mccabe.max-complexity = 10 lint.mccabe.max-complexity = 10
# TODO remove "hash" ignore after issue is fixed: https://github.com/python-trio/trio/issues/3053
lint.pydocstyle.convention = "pep257" lint.pydocstyle.convention = "pep257"
[tool.pytest.ini_options] [tool.pytest.ini_options]
@ -57,8 +58,7 @@ addopts = """
--no-cov-on-fail --strict-markers --reuse-db --no-cov-on-fail --strict-markers --reuse-db
--driver=Firefox --driver=Firefox
-W error -W error
-W "ignore:capabilities and desired_capabilities have been deprecated:DeprecationWarning:pytest_selenium.pytest_selenium" -W "ignore:The `hash` argument is deprecated in favor of `unsafe_hash` and will be removed in or after August 2025:DeprecationWarning"
-W "ignore:service_log_path has been deprecated:DeprecationWarning:pytest_selenium.pytest_selenium"
""" """
markers = [ markers = [
] ]

View file

@ -4,8 +4,6 @@ pytest>=6.0
pytest-cov>=3.0.0 pytest-cov>=3.0.0
pytest-django>=4.1.0 pytest-django>=4.1.0
pytest-selenium>=4.0.0 pytest-selenium>=4.0.0
# pytest-selenium 4.0.1 has an implicit dependency on `py`
# py>=1.11.0
pre-commit>=2.1 pre-commit>=2.1
model-bakery>=1.3.1 model-bakery>=1.3.1
bpython>=0.22.1 bpython>=0.22.1

View file

@ -9,13 +9,13 @@ asgiref==3.8.1
# -c constraints.txt # -c constraints.txt
# django # django
# django-browser-reload # django-browser-reload
attrs==23.2.0 attrs==24.1.0
# via # via
# -c constraints.txt # -c constraints.txt
# hypothesis # hypothesis
# outcome # outcome
# trio # trio
black==24.4.2 black==24.8.0
# via -r requirements-dev.in # via -r requirements-dev.in
blessed==1.20.0 blessed==1.20.0
# via curtsies # via curtsies
@ -38,7 +38,7 @@ click==8.1.7
# via # via
# black # black
# pip-tools # pip-tools
coverage[toml]==7.6.0 coverage[toml]==7.6.1
# via pytest-cov # via pytest-cov
curtsies==0.4.2 curtsies==0.4.2
# via bpython # via bpython
@ -66,7 +66,7 @@ h11==0.14.0
# via # via
# -c constraints.txt # -c constraints.txt
# wsproto # wsproto
hypothesis==6.108.5 hypothesis==6.108.8
# via -r requirements-dev.in # via -r requirements-dev.in
identify==2.6.0 identify==2.6.0
# via pre-commit # via pre-commit
@ -155,7 +155,7 @@ requests==2.32.3
# bpython # bpython
# pytest-base-url # pytest-base-url
# pytest-selenium # pytest-selenium
ruff==0.5.5 ruff==0.5.6
# via -r requirements-dev.in # via -r requirements-dev.in
selenium==4.23.1 selenium==4.23.1
# via # via
@ -179,7 +179,7 @@ sqlparse==0.5.1
# django-debug-toolbar # django-debug-toolbar
tenacity==9.0.0 tenacity==9.0.0
# via pytest-selenium # via pytest-selenium
trio==0.26.0 trio==0.26.1
# via # via
# -c constraints.txt # -c constraints.txt
# selenium # selenium
@ -205,7 +205,7 @@ websocket-client==1.8.0
# via # via
# -c constraints.txt # -c constraints.txt
# selenium # selenium
wheel==0.43.0 wheel==0.44.0
# via pip-tools # via pip-tools
wsproto==1.2.0 wsproto==1.2.0
# via # via

View file

@ -8,7 +8,7 @@ asgiref==3.8.1
# via # via
# django # django
# django-htmx # django-htmx
attrs==23.2.0 attrs==24.1.0
# via # via
# outcome # outcome
# trio # trio
@ -39,7 +39,7 @@ django-environ==0.11.2
# via -r requirements.in # via -r requirements.in
django-extensions==3.2.3 django-extensions==3.2.3
# via -r requirements.in # via -r requirements.in
django-htmx==1.18.0 django-htmx==1.19.0
# via -r requirements.in # via -r requirements.in
django-linear-migrations==2.13.0 django-linear-migrations==2.13.0
# via -r requirements.in # via -r requirements.in
@ -75,7 +75,7 @@ sortedcontainers==2.4.0
# via trio # via trio
sqlparse==0.5.1 sqlparse==0.5.1
# via django # via django
trio==0.26.0 trio==0.26.1
# via # via
# selenium # selenium
# trio-websocket # trio-websocket