Skip to content

Commit 1d88985

Browse files
authored
Merge pull request #41 from asottile/all-repos_autofix_azure-pipelines-autoupdate
Update azure-pipelines template repositories
2 parents 3c902cf + 9d55d14 commit 1d88985

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

.pre-commit-config.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v2.1.0
3+
rev: v2.4.0
44
hooks:
55
- id: trailing-whitespace
66
- id: end-of-file-fixer
@@ -11,29 +11,29 @@ repos:
1111
- id: name-tests-test
1212
- id: requirements-txt-fixer
1313
- repo: https://gitlab.com/pycqa/flake8
14-
rev: 3.7.7
14+
rev: 3.7.9
1515
hooks:
1616
- id: flake8
1717
- repo: https://github.com/pre-commit/mirrors-autopep8
18-
rev: v1.4.3
18+
rev: v1.5
1919
hooks:
2020
- id: autopep8
2121
- repo: https://github.com/asottile/reorder_python_imports
22-
rev: v1.4.0
22+
rev: v1.9.0
2323
hooks:
2424
- id: reorder-python-imports
2525
args: [--py3-plus]
2626
- repo: https://github.com/asottile/pyupgrade
27-
rev: v1.12.0
27+
rev: v1.26.2
2828
hooks:
2929
- id: pyupgrade
3030
args: [--py3-plus]
3131
- repo: https://github.com/asottile/add-trailing-comma
32-
rev: v1.0.0
32+
rev: v1.5.0
3333
hooks:
3434
- id: add-trailing-comma
3535
args: [--py36-plus]
3636
- repo: https://github.com/pre-commit/mirrors-mypy
37-
rev: v0.670-1
37+
rev: v0.761
3838
hooks:
3939
- id: mypy

azure-pipelines.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ resources:
1010
type: github
1111
endpoint: github
1212
name: asottile/azure-pipeline-templates
13-
ref: refs/tags/v0.0.17
13+
ref: refs/tags/v1.0.0
1414

1515
jobs:
1616
- template: job--pre-commit.yml@asottile

setup.cfg

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,14 @@ classifiers =
1515
Programming Language :: Python :: 3 :: Only
1616
Programming Language :: Python :: 3.6
1717
Programming Language :: Python :: 3.7
18+
Programming Language :: Python :: 3.8
1819
Programming Language :: Python :: Implementation :: CPython
1920
Programming Language :: Python :: Implementation :: PyPy
2021

2122
[options]
2223
py_modules = blacken_docs
23-
install_requires = black>=19.3b0
24+
install_requires =
25+
black>=19.3b0
2426
python_requires = >=3.6
2527

2628
[options.entry_points]

0 commit comments

Comments
 (0)