mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-21 14:08:04 +01:00
Compare commits
2 commits
f91d3420aa
...
d703cd0032
Author | SHA1 | Date | |
---|---|---|---|
d703cd0032 | |||
|
7e4a6da750 |
4 changed files with 5 additions and 6 deletions
|
@ -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.7.0
|
rev: v0.7.1
|
||||||
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.4.3
|
rev: v2.4.3
|
||||||
hooks:
|
hooks:
|
||||||
- id: pyproject-fmt
|
- id: pyproject-fmt
|
||||||
- repo: https://github.com/jazzband/pip-tools
|
- repo: https://github.com/jazzband/pip-tools
|
||||||
|
@ -75,5 +75,5 @@ repos:
|
||||||
files: ^requirements\.in|constraints\.txt$
|
files: ^requirements\.in|constraints\.txt$
|
||||||
- id: pip-compile
|
- id: pip-compile
|
||||||
name: pip-compile requirements-dev.txt
|
name: pip-compile requirements-dev.txt
|
||||||
args: [-q, --allow-unsafe, --no-strip-extras, requirements-dev.in]
|
args: [-q, --allow-unsafe, --no-strip-extras, --constraint=constraints.txt, requirements-dev.in]
|
||||||
files: ^requirements-dev\.(in|txt)$
|
files: ^requirements-dev\.(in|txt)$
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
-c constraints.txt
|
|
||||||
django-debug-toolbar>=3.2
|
django-debug-toolbar>=3.2
|
||||||
pytest>=6.0
|
pytest>=6.0
|
||||||
pytest-cov>=3.0.0
|
pytest-cov>=3.0.0
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
# This file is autogenerated by pip-compile with Python 3.12
|
# This file is autogenerated by pip-compile with Python 3.12
|
||||||
# by the following command:
|
# by the following command:
|
||||||
#
|
#
|
||||||
# pip-compile --allow-unsafe requirements-dev.in
|
# pip-compile --allow-unsafe --constraint=constraints.txt requirements-dev.in
|
||||||
#
|
#
|
||||||
asgiref==3.8.1
|
asgiref==3.8.1
|
||||||
# via
|
# via
|
||||||
|
|
2
tasks.py
2
tasks.py
|
@ -31,7 +31,7 @@ def compile_dependencies(ctx: Context, *, update: bool = False, sync: bool = Fal
|
||||||
echo=True,
|
echo=True,
|
||||||
)
|
)
|
||||||
ctx.run(
|
ctx.run(
|
||||||
f"pip-compile {common_args} --no-strip-extras requirements-dev.in",
|
f"pip-compile {common_args} --no-strip-extras -c constraints.txt requirements-dev.in",
|
||||||
pty=True,
|
pty=True,
|
||||||
echo=True,
|
echo=True,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue