Skip to content

Commit f485d44

Browse files
[pre-commit.ci] pre-commit autoupdate (#9)
1 parent 0babd3e commit f485d44

File tree

4 files changed

+17
-12
lines changed

4 files changed

+17
-12
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ __pycache__
1616

1717
build
1818
dist
19-
src/pytask_latex/_version.py
19+
src/pytask_environment/_version.py

.pre-commit-config.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,25 +22,25 @@ repos:
2222
- id: rst-inline-touching-normal
2323
- id: text-unicode-replacement-char
2424
- repo: https://github.com/asottile/pyupgrade
25-
rev: v2.21.2
25+
rev: v2.29.1
2626
hooks:
2727
- id: pyupgrade
2828
args: [--py36-plus]
2929
- repo: https://github.com/asottile/reorder_python_imports
30-
rev: v2.5.0
30+
rev: v2.6.0
3131
hooks:
3232
- id: reorder-python-imports
3333
- repo: https://github.com/psf/black
34-
rev: 21.7b0
34+
rev: 21.11b1
3535
hooks:
3636
- id: black
3737
- repo: https://github.com/asottile/blacken-docs
38-
rev: v1.10.0
38+
rev: v1.12.0
3939
hooks:
4040
- id: blacken-docs
4141
additional_dependencies: [black]
42-
- repo: https://gitlab.com/pycqa/flake8
43-
rev: 3.9.2
42+
- repo: https://github.com/PyCQA/flake8
43+
rev: 4.0.1
4444
hooks:
4545
- id: flake8
4646
types: [python]
@@ -61,15 +61,15 @@ repos:
6161
Pygments,
6262
]
6363
- repo: https://github.com/PyCQA/doc8
64-
rev: 0.9.0
64+
rev: 0.10.1
6565
hooks:
6666
- id: doc8
6767
- repo: https://github.com/asottile/setup-cfg-fmt
68-
rev: v1.17.0
68+
rev: v1.20.0
6969
hooks:
7070
- id: setup-cfg-fmt
7171
- repo: https://github.com/econchick/interrogate
72-
rev: 1.4.0
72+
rev: 1.5.0
7373
hooks:
7474
- id: interrogate
7575
args: [-v, --fail-under=40, src, tests]
@@ -79,7 +79,7 @@ repos:
7979
- id: codespell
8080
args: [-L als, -L unparseable]
8181
- repo: https://github.com/mgedmin/check-manifest
82-
rev: "0.46"
82+
rev: "0.47"
8383
hooks:
8484
- id: check-manifest
8585
- repo: meta

setup.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers =
1919
Programming Language :: Python :: 3.7
2020
Programming Language :: Python :: 3.8
2121
Programming Language :: Python :: 3.9
22+
Programming Language :: Python :: 3.10
2223
project_urls =
2324
Changelog = https://github.com/pytask-dev/pytask-environment/blob/main/CHANGES.rst
2425
Documentation = https://github.com/pytask-dev/pytask-environment
@@ -42,3 +43,7 @@ where = src
4243
[options.entry_points]
4344
pytask =
4445
pytask_environment = pytask_environment.plugin
46+
47+
[check-manifest]
48+
ignore =
49+
src/pytask_environment/_version.py

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ conda_channels =
1717
conda-forge
1818
nodefaults
1919
commands =
20-
pip install --no-deps .
20+
pip install -e .
2121
pytest {posargs}
2222

2323
[testenv:pre-commit]

0 commit comments

Comments
 (0)