From 03264508c17f3c938c12a02fa95a1160323b9f12 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Mon, 3 Jan 2022 21:51:17 +0100 Subject: [PATCH 1/3] Remove unnecessary content from tox.ini. --- tox.ini | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/tox.ini b/tox.ini index fb6b140..6dd3838 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = pytest, pre-commit +envlist = pytest skipsdist = True skip_missing_interpreters = True @@ -21,19 +21,12 @@ commands = pip install --no-deps . pytest {posargs} -[testenv:pre-commit] -deps = pre-commit -commands = pre-commit run --all-files - [doc8] ignore = D002, D004 max-line-length = 89 [flake8] docstring-convention = numpy -exclude = - versioneer.py - src/pytask_parallel/_version.py ignore = D E203 ; ignores whitespace around : which is enforced by Black. From 741134e52ef269d67908458bd907bbc047cd472f Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Mon, 3 Jan 2022 22:01:42 +0100 Subject: [PATCH 2/3] to changes. --- CHANGES.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 60986c1..54a4684 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,6 +7,12 @@ all releases are available on `PyPI `_ `Anaconda.org `_. +0.1.1 - 2022-xx-xx +------------------ + +- :gh:`30` removes unnecessary content from ``tox.ini``. + + 0.1.0 - 2021-07-20 ------------------ From eebc2074f6beda15dc3297aab9e93ccac1a45345 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Mon, 3 Jan 2022 22:27:55 +0100 Subject: [PATCH 3/3] Remove ci step. --- .../continuous-integration-workflow.yml | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index 018a235..0841ed2 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -64,23 +64,3 @@ jobs: if: runner.os == 'Linux' && matrix.python-version == '3.7' shell: bash -l {0} run: cat codecov.yml | curl --data-binary @- https://codecov.io/validate - - - pre-commit: - - name: Run pre-commit. - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - name: Set up Python 3.8 - uses: actions/setup-python@v1 - with: - python-version: 3.8 - - - name: Install dependencies - run: pip install tox - - - name: Run pre-commit - run: tox -e pre-commit