Skip to content

Commit

Permalink
pre-commit update and extras require sync
Browse files Browse the repository at this point in the history
  • Loading branch information
RonnyPfannschmidt committed Sep 2, 2021
1 parent 6419e77 commit 86d11ca
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/psf/black
rev: 21.7b0
rev: 21.8b0
hooks:
- id: black
args: [--safe, --quiet]
Expand All @@ -21,7 +21,7 @@ repos:
hooks:
- id: flake8
- repo: https://github.com/asottile/pyupgrade
rev: v2.24.0
rev: v2.25.0
hooks:
- id: pyupgrade
args: [--py36-plus]
Expand Down
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ def parse(root, config):
setuptools.setup(
setup_requires=["setuptools"],
version=scm_version(),
extras_require={"toml": []},
extras_require={
"toml": [
"setuptools>=42",
"tomli>=1.0.0",
],
},
cmdclass={"bdist_egg": bdist_egg},
)

0 comments on commit 86d11ca

Please sign in to comment.