Skip to content

Commit 86d11ca

Browse files
pre-commit update and extras require sync
1 parent 6419e77 commit 86d11ca

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/psf/black
3-
rev: 21.7b0
3+
rev: 21.8b0
44
hooks:
55
- id: black
66
args: [--safe, --quiet]
@@ -21,7 +21,7 @@ repos:
2121
hooks:
2222
- id: flake8
2323
- repo: https://github.com/asottile/pyupgrade
24-
rev: v2.24.0
24+
rev: v2.25.0
2525
hooks:
2626
- id: pyupgrade
2727
args: [--py36-plus]

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,11 @@ def parse(root, config):
5858
setuptools.setup(
5959
setup_requires=["setuptools"],
6060
version=scm_version(),
61-
extras_require={"toml": []},
61+
extras_require={
62+
"toml": [
63+
"setuptools>=42",
64+
"tomli>=1.0.0",
65+
],
66+
},
6267
cmdclass={"bdist_egg": bdist_egg},
6368
)

0 commit comments

Comments
 (0)