From 5b92119591490834468694a1b495bb935ba11077 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 3 Jan 2022 18:03:20 +0000 Subject: [PATCH 1/4] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/pre-commit/pre-commit-hooks: v4.0.1 → v4.1.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.0.1...v4.1.0) - [github.com/asottile/pyupgrade: v2.21.2 → v2.31.0](https://github.com/asottile/pyupgrade/compare/v2.21.2...v2.31.0) - [github.com/asottile/reorder_python_imports: v2.5.0 → v2.6.0](https://github.com/asottile/reorder_python_imports/compare/v2.5.0...v2.6.0) - [github.com/asottile/setup-cfg-fmt: v1.17.0 → v1.20.0](https://github.com/asottile/setup-cfg-fmt/compare/v1.17.0...v1.20.0) - [github.com/psf/black: 21.7b0 → 21.12b0](https://github.com/psf/black/compare/21.7b0...21.12b0) - [github.com/asottile/blacken-docs: v1.10.0 → v1.12.0](https://github.com/asottile/blacken-docs/compare/v1.10.0...v1.12.0) - [github.com/PyCQA/flake8: 3.9.2 → 4.0.1](https://github.com/PyCQA/flake8/compare/3.9.2...4.0.1) - [github.com/PyCQA/doc8: 0.9.0 → 0.10.1](https://github.com/PyCQA/doc8/compare/0.9.0...0.10.1) - [github.com/econchick/interrogate: 1.4.0 → 1.5.0](https://github.com/econchick/interrogate/compare/1.4.0...1.5.0) - [github.com/mgedmin/check-manifest: 0.46 → 0.47](https://github.com/mgedmin/check-manifest/compare/0.46...0.47) --- .pre-commit-config.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index bb0389f..2b88954 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.0.1 + rev: v4.1.0 hooks: - id: check-added-large-files args: ['--maxkb=100'] @@ -22,29 +22,29 @@ repos: - id: rst-inline-touching-normal - id: text-unicode-replacement-char - repo: https://github.com/asottile/pyupgrade - rev: v2.21.2 + rev: v2.31.0 hooks: - id: pyupgrade args: [--py36-plus] - repo: https://github.com/asottile/reorder_python_imports - rev: v2.5.0 + rev: v2.6.0 hooks: - id: reorder-python-imports - repo: https://github.com/asottile/setup-cfg-fmt - rev: v1.17.0 + rev: v1.20.0 hooks: - id: setup-cfg-fmt - repo: https://github.com/psf/black - rev: 21.7b0 + rev: 21.12b0 hooks: - id: black - repo: https://github.com/asottile/blacken-docs - rev: v1.10.0 + rev: v1.12.0 hooks: - id: blacken-docs additional_dependencies: [black] - repo: https://github.com/PyCQA/flake8 - rev: 3.9.2 + rev: 4.0.1 hooks: - id: flake8 types: [python] @@ -65,11 +65,11 @@ repos: Pygments, ] - repo: https://github.com/PyCQA/doc8 - rev: 0.9.0 + rev: 0.10.1 hooks: - id: doc8 - repo: https://github.com/econchick/interrogate - rev: 1.4.0 + rev: 1.5.0 hooks: - id: interrogate args: [-v, --fail-under=40, src, tests] @@ -79,7 +79,7 @@ repos: - id: codespell args: [-L unparseable] - repo: https://github.com/mgedmin/check-manifest - rev: "0.46" + rev: "0.47" hooks: - id: check-manifest - repo: meta From 09111a8d6317ff9dfb4cb02715efc66185968fed Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 3 Jan 2022 18:05:44 +0000 Subject: [PATCH 2/4] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index 7cab652..c9998d4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -19,6 +19,7 @@ classifiers = Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 project_urls = Changelog = https://github.com/pytask-dev/pytask-parallel/blob/main/CHANGES.rst Documentation = https://github.com/pytask-dev/pytask-parallel From a102173c56c45c79b41954e2cdbc49c2d485c4c5 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Mon, 3 Jan 2022 22:03:48 +0100 Subject: [PATCH 3/4] fix. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index fb6b140..97c1f1a 100644 --- a/tox.ini +++ b/tox.ini @@ -18,7 +18,7 @@ conda_channels = conda-forge nodefaults commands = - pip install --no-deps . + pip install -e --no-deps . pytest {posargs} [testenv:pre-commit] From 843ec4048325f92c0df6f37959b7400f1879b981 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Mon, 3 Jan 2022 22:10:14 +0100 Subject: [PATCH 4/4] fix. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 97c1f1a..5944d79 100644 --- a/tox.ini +++ b/tox.ini @@ -18,7 +18,7 @@ conda_channels = conda-forge nodefaults commands = - pip install -e --no-deps . + pip install --no-deps -e . pytest {posargs} [testenv:pre-commit]