Skip to content

Commit

Permalink
chore(deps-dev): bump dependent package and tools versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jenstroeger committed Dec 3, 2021
1 parent 3595324 commit d1b62c2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,27 @@ repos:

# Sort imports.
- repo: https://github.com/pycqa/isort
rev: 5.9.3
rev: 5.10.1
hooks:
- id: isort
name: isort (python)

# Add Black code formatters.
- repo: https://github.com/ambv/black
rev: 21.9b0
rev: 21.11b1
hooks:
- id: black
language_version: python3.9
- repo: https://github.com/asottile/blacken-docs
rev: v1.11.0
rev: v1.12.0
hooks:
- id: blacken-docs
args: [--line-length, "120"]
additional_dependencies: [black==21.5b2]
additional_dependencies: [black==21.11b1]

# Upgrade and rewrite Python idioms.
- repo: https://github.com/asottile/pyupgrade
rev: v2.29.0
rev: v2.29.1
hooks:
- id: pyupgrade
files: ^src/package/|^tests/|setup.py
Expand Down Expand Up @@ -66,7 +66,7 @@ repos:
hooks:
- id: mypy
files: ^src/package/|^tests/|setup.py
additional_dependencies: [types-setuptools==57.4.2,hypothesis==6.24.2]
additional_dependencies: [types-setuptools==57.4.2,hypothesis==6.30.0]
args: [--config-file, mypy.ini]

# Enable a whole bunch of useful helper hooks, too.
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,20 +50,20 @@
include_package_data=True,
install_requires=[],
extras_require={
"test": ["hypothesis==6.24.2", "pytest==6.2.5", "pytest-cov==3.0.0"],
"test": ["hypothesis==6.30.0", "pytest==6.2.5", "pytest-cov==3.0.0"],
"dev": [
"flake8==4.0.1",
"flake8-builtins==1.5.3",
"flake8-docstrings==1.6.0",
"flake8-rst-docstrings==0.2.3",
"mypy==0.910",
"pep8-naming==0.12.1",
"pre-commit==2.15.0",
"pylint==2.11.1",
"python-semantic-release==7.19.2",
"pre-commit==2.16.0",
"pylint==2.12.1",
"python-semantic-release==7.23.0",
"tox==3.24.4",
],
"docs": ["sphinx==4.3.0"],
"docs": ["sphinx==4.3.1"],
},
package_data={
"package": ["py.typed"],
Expand Down

0 comments on commit d1b62c2

Please sign in to comment.