mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 17:32:38 +02:00
Use fixed version of important dev tools to avoid failing CI
Also use the "black" profile for isort.
This commit is contained in:
parent
f933776fdc
commit
2d5240d3d6
2 changed files with 5 additions and 5 deletions
|
@ -55,14 +55,14 @@ database =
|
|||
PyMySQL>=0.9,<1.1
|
||||
|
||||
dev =
|
||||
black>=19.10b0 ; python_version >= '3.7'
|
||||
flake8>=3.7.9
|
||||
black==22.12.0
|
||||
flake8==5.0.4
|
||||
isort==5.11.5
|
||||
vermin==1.5.1
|
||||
Flask-Testing>=0.8.1
|
||||
isort>=5.0.0
|
||||
pytest>=6.2.5
|
||||
tox>=3.14.6
|
||||
zest.releaser>=6.20.1
|
||||
vermin
|
||||
|
||||
doc =
|
||||
Sphinx==5.3.0
|
||||
|
|
2
tox.ini
2
tox.ini
|
@ -18,7 +18,7 @@ changedir = /tmp
|
|||
[testenv:lint_docs]
|
||||
commands =
|
||||
black --check --target-version=py37 .
|
||||
isort -c .
|
||||
isort --check --profile black .
|
||||
flake8 ihatemoney
|
||||
vermin --no-tips --violations -t=3.7- .
|
||||
sphinx-build -a -n -b html -d docs/_build/doctrees docs docs/_build/html
|
||||
|
|
Loading…
Reference in a new issue