File tree Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 14
14
hooks :
15
15
- id : pyupgrade
16
16
- repo : https://github.com/PyCQA/isort
17
- rev : 5.5.2
17
+ rev : 5.5.3
18
18
hooks :
19
19
- id : isort
20
20
- repo : https://github.com/psf/black
28
28
hooks :
29
29
- id : setup-cfg-fmt
30
30
- repo : https://github.com/PyCQA/flake8
31
- rev : " d0a0cb4 "
31
+ rev : " 3.8.3 "
32
32
hooks :
33
33
- id : flake8
34
34
additional_dependencies : ["flake8-bugbear == 20.1.4"]
Original file line number Diff line number Diff line change 1
1
# tox-ini-fmt
2
2
3
- ![ check] ( https://github.com/tox-dev/tox-ini-fmt/workflows/check/badge.svg?branch=main )
4
-
5
3
[ ![ PyPI] ( https://img.shields.io/pypi/v/tox-ini-fmt?style=flat-square )] ( https://pypi.org/project/tox-ini-fmt )
6
4
[ ![ PyPI - Implementation] ( https://img.shields.io/pypi/implementation/tox-ini-fmt?style=flat-square )] ( https://pypi.org/project/tox-ini-fmt )
7
5
[ ![ PyPI - Python Version] ( https://img.shields.io/pypi/pyversions/tox-ini-fmt?style=flat-square )] ( https://pypi.org/project/tox-ini-fmt )
@@ -28,7 +26,7 @@ Sample `.pre-commit-config.yaml`:
28
26
29
27
``` yaml
30
28
- repo : https://github.com/tox-dev/tox-ini-fmt
31
- rev : v0.0.1
29
+ rev : " 0.2.0 "
32
30
hooks :
33
31
- id : tox-ini-fmt
34
32
` ` `
Original file line number Diff line number Diff line change @@ -19,8 +19,10 @@ classifiers =
19
19
Programming Language :: Python :: 3.6
20
20
Programming Language :: Python :: 3.7
21
21
Programming Language :: Python :: 3.8
22
+ Programming Language :: Python :: Implementation :: CPython
23
+ Programming Language :: Python :: Implementation :: PyPy
22
24
Topic :: Utilities
23
- keywords = pytest, print, debug
25
+ keywords = tox, formatter
24
26
maintainer-email =
[email protected]
25
27
project_urls =
26
28
Source =https://github.com/tox-dev/tox-ini-fmt
Original file line number Diff line number Diff line change @@ -40,6 +40,13 @@ commands =
40
40
pre-commit run --all-files --show-diff-on-failure
41
41
python -c ' print("hint: run {envdir}/bin/pre-commit install to add checks as pre-commit hook")'
42
42
43
+ [testenv:type]
44
+ description = run type check on code base
45
+ deps =
46
+ mypy ==0.782
47
+ commands =
48
+ mypy --strict --python-version 3.8 {envsitepackagesdir}/tox_ini_fmt
49
+
43
50
[testenv:pkg_check]
44
51
description = check that the long description is valid
45
52
passenv =
@@ -54,13 +61,6 @@ commands =
54
61
twine check {envtmpdir}/*
55
62
changedir = {toxinidir}
56
63
57
- [testenv:type]
58
- description = run type check on code base
59
- deps =
60
- mypy ==0.782
61
- commands =
62
- mypy --strict --python-version 3.8 {envsitepackagesdir}/tox_ini_fmt
63
-
64
64
[testenv:dev]
65
65
description = generate a DEV environment
66
66
basepython = python3.8
You can’t perform that action at this time.
0 commit comments