mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-22 06:28:03 +01:00
Compare commits
3 commits
dc6b8aeb45
...
1637de04b0
Author | SHA1 | Date | |
---|---|---|---|
|
1637de04b0 | ||
3cb5d8c8c7 | |||
|
22fa2b8d6c |
6 changed files with 18 additions and 20 deletions
|
@ -31,7 +31,7 @@ repos:
|
|||
- id: django-upgrade
|
||||
args: [--target-version, "4.1"]
|
||||
- repo: https://github.com/psf/black
|
||||
rev: 24.4.2
|
||||
rev: 24.8.0
|
||||
hooks:
|
||||
- id: black
|
||||
args: [--target-version, py311]
|
||||
|
@ -40,7 +40,7 @@ repos:
|
|||
hooks:
|
||||
- id: djhtml
|
||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||
rev: v0.5.5
|
||||
rev: v0.5.6
|
||||
hooks:
|
||||
- id: ruff
|
||||
args: [--fix]
|
||||
|
@ -59,7 +59,7 @@ repos:
|
|||
- eslint@8.36.0
|
||||
- eslint-config-prettier@8.5.0
|
||||
- repo: https://github.com/tox-dev/pyproject-fmt
|
||||
rev: 2.1.4
|
||||
rev: 2.2.1
|
||||
hooks:
|
||||
- id: pyproject-fmt
|
||||
- repo: https://github.com/jazzband/pip-tools
|
||||
|
|
|
@ -8,7 +8,7 @@ asgiref==3.8.1
|
|||
# via
|
||||
# django
|
||||
# django-htmx
|
||||
attrs==23.2.0
|
||||
attrs==24.1.0
|
||||
# via
|
||||
# outcome
|
||||
# trio
|
||||
|
@ -39,7 +39,7 @@ django-environ==0.11.2
|
|||
# via -r requirements.in
|
||||
django-extensions==3.2.3
|
||||
# via -r requirements.in
|
||||
django-htmx==1.18.0
|
||||
django-htmx==1.19.0
|
||||
# via -r requirements.in
|
||||
django-linear-migrations==2.13.0
|
||||
# via -r requirements.in
|
||||
|
@ -75,7 +75,7 @@ sortedcontainers==2.4.0
|
|||
# via trio
|
||||
sqlparse==0.5.1
|
||||
# via django
|
||||
trio==0.26.0
|
||||
trio==0.26.1
|
||||
# via
|
||||
# selenium
|
||||
# trio-websocket
|
||||
|
|
|
@ -49,6 +49,7 @@ lint.unfixable = [
|
|||
"T20",
|
||||
]
|
||||
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"
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
|
@ -57,8 +58,7 @@ addopts = """
|
|||
--no-cov-on-fail --strict-markers --reuse-db
|
||||
--driver=Firefox
|
||||
-W error
|
||||
-W "ignore:capabilities and desired_capabilities have been deprecated:DeprecationWarning:pytest_selenium.pytest_selenium"
|
||||
-W "ignore:service_log_path has 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"
|
||||
"""
|
||||
markers = [
|
||||
]
|
||||
|
|
|
@ -4,8 +4,6 @@ pytest>=6.0
|
|||
pytest-cov>=3.0.0
|
||||
pytest-django>=4.1.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
|
||||
model-bakery>=1.3.1
|
||||
bpython>=0.22.1
|
||||
|
|
|
@ -9,13 +9,13 @@ asgiref==3.8.1
|
|||
# -c constraints.txt
|
||||
# django
|
||||
# django-browser-reload
|
||||
attrs==23.2.0
|
||||
attrs==24.1.0
|
||||
# via
|
||||
# -c constraints.txt
|
||||
# hypothesis
|
||||
# outcome
|
||||
# trio
|
||||
black==24.4.2
|
||||
black==24.8.0
|
||||
# via -r requirements-dev.in
|
||||
blessed==1.20.0
|
||||
# via curtsies
|
||||
|
@ -38,7 +38,7 @@ click==8.1.7
|
|||
# via
|
||||
# black
|
||||
# pip-tools
|
||||
coverage[toml]==7.6.0
|
||||
coverage[toml]==7.6.1
|
||||
# via pytest-cov
|
||||
curtsies==0.4.2
|
||||
# via bpython
|
||||
|
@ -66,7 +66,7 @@ h11==0.14.0
|
|||
# via
|
||||
# -c constraints.txt
|
||||
# wsproto
|
||||
hypothesis==6.108.5
|
||||
hypothesis==6.108.8
|
||||
# via -r requirements-dev.in
|
||||
identify==2.6.0
|
||||
# via pre-commit
|
||||
|
@ -155,7 +155,7 @@ requests==2.32.3
|
|||
# bpython
|
||||
# pytest-base-url
|
||||
# pytest-selenium
|
||||
ruff==0.5.5
|
||||
ruff==0.5.6
|
||||
# via -r requirements-dev.in
|
||||
selenium==4.23.1
|
||||
# via
|
||||
|
@ -179,7 +179,7 @@ sqlparse==0.5.1
|
|||
# django-debug-toolbar
|
||||
tenacity==9.0.0
|
||||
# via pytest-selenium
|
||||
trio==0.26.0
|
||||
trio==0.26.1
|
||||
# via
|
||||
# -c constraints.txt
|
||||
# selenium
|
||||
|
@ -205,7 +205,7 @@ websocket-client==1.8.0
|
|||
# via
|
||||
# -c constraints.txt
|
||||
# selenium
|
||||
wheel==0.43.0
|
||||
wheel==0.44.0
|
||||
# via pip-tools
|
||||
wsproto==1.2.0
|
||||
# via
|
||||
|
|
|
@ -8,7 +8,7 @@ asgiref==3.8.1
|
|||
# via
|
||||
# django
|
||||
# django-htmx
|
||||
attrs==23.2.0
|
||||
attrs==24.1.0
|
||||
# via
|
||||
# outcome
|
||||
# trio
|
||||
|
@ -39,7 +39,7 @@ django-environ==0.11.2
|
|||
# via -r requirements.in
|
||||
django-extensions==3.2.3
|
||||
# via -r requirements.in
|
||||
django-htmx==1.18.0
|
||||
django-htmx==1.19.0
|
||||
# via -r requirements.in
|
||||
django-linear-migrations==2.13.0
|
||||
# via -r requirements.in
|
||||
|
@ -75,7 +75,7 @@ sortedcontainers==2.4.0
|
|||
# via trio
|
||||
sqlparse==0.5.1
|
||||
# via django
|
||||
trio==0.26.0
|
||||
trio==0.26.1
|
||||
# via
|
||||
# selenium
|
||||
# trio-websocket
|
||||
|
|
Loading…
Reference in a new issue