File tree Expand file tree Collapse file tree 3 files changed +7
-28
lines changed
Expand file tree Collapse file tree 3 files changed +7
-28
lines changed Original file line number Diff line number Diff line change 6464 if : runner.os == 'Linux' && matrix.python-version == '3.7'
6565 shell : bash -l {0}
6666 run : cat codecov.yml | curl --data-binary @- https://codecov.io/validate
67-
68-
69- pre-commit :
70-
71- name : Run pre-commit.
72- runs-on : ubuntu-latest
73-
74- steps :
75- - uses : actions/checkout@v2
76-
77- - name : Set up Python 3.8
78- uses : actions/setup-python@v1
79- with :
80- python-version : 3.8
81-
82- - name : Install dependencies
83- run : pip install tox
84-
85- - name : Run pre-commit
86- run : tox -e pre-commit
Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ all releases are available on `PyPI <https://pypi.org/project/pytask-parallel>`_
77`Anaconda.org <https://anaconda.org/conda-forge/pytask-parallel >`_.
88
99
10+ 0.1.1 - 2022-xx-xx
11+ ------------------
12+
13+ - :gh: `30 ` removes unnecessary content from ``tox.ini ``.
14+
15+
10160.1.0 - 2021-07-20
1117------------------
1218
Original file line number Diff line number Diff line change 11[tox]
2- envlist = pytest, pre-commit
2+ envlist = pytest
33skipsdist = True
44skip_missing_interpreters = True
55
@@ -21,19 +21,12 @@ commands =
2121 pip install --no-deps -e .
2222 pytest {posargs}
2323
24- [testenv:pre-commit]
25- deps = pre-commit
26- commands = pre-commit run --all-files
27-
2824[doc8]
2925ignore = D002, D004
3026max-line-length = 89
3127
3228[flake8]
3329docstring-convention = numpy
34- exclude =
35- versioneer.py
36- src/pytask_parallel/_version.py
3730ignore =
3831 D
3932 E203 ; ignores whitespace around : which is enforced by Black.
You can’t perform that action at this time.
0 commit comments