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 64
64
if : runner.os == 'Linux' && matrix.python-version == '3.7'
65
65
shell : bash -l {0}
66
66
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>`_
7
7
`Anaconda.org <https://anaconda.org/conda-forge/pytask-parallel >`_.
8
8
9
9
10
+ 0.1.1 - 2022-xx-xx
11
+ ------------------
12
+
13
+ - :gh: `30 ` removes unnecessary content from ``tox.ini ``.
14
+
15
+
10
16
0.1.0 - 2021-07-20
11
17
------------------
12
18
Original file line number Diff line number Diff line change 1
1
[tox]
2
- envlist = pytest, pre-commit
2
+ envlist = pytest
3
3
skipsdist = True
4
4
skip_missing_interpreters = True
5
5
@@ -21,19 +21,12 @@ commands =
21
21
pip install --no-deps -e .
22
22
pytest {posargs}
23
23
24
- [testenv:pre-commit]
25
- deps = pre-commit
26
- commands = pre-commit run --all-files
27
-
28
24
[doc8]
29
25
ignore = D002, D004
30
26
max-line-length = 89
31
27
32
28
[flake8]
33
29
docstring-convention = numpy
34
- exclude =
35
- versioneer.py
36
- src/pytask_parallel/_version.py
37
30
ignore =
38
31
D
39
32
E203 ; ignores whitespace around : which is enforced by Black.
You can’t perform that action at this time.
0 commit comments