Skip to content

Commit 57767b0

Browse files
authored
Previous flake8 versions (#4)
* remove poetry lock file * move dependency management to tox * increment version number * add tests passed job to add as a required status
1 parent 96b1835 commit 57767b0

File tree

6 files changed

+61
-797
lines changed

6 files changed

+61
-797
lines changed

.github/workflows/ci-cd.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ jobs:
4848
- "3.9"
4949
- "3.10"
5050
- "3.11"
51+
env:
52+
- "test-flake85"
53+
- "test-flake86"
5154
steps:
5255
- uses: actions/checkout@v3
5356
- name: Set up Python ${{ matrix.python-version }}
@@ -57,7 +60,14 @@ jobs:
5760
- name: Install tox
5861
run: python -m pip install tox
5962
- name: Run testing
60-
run: tox -e test
63+
run: tox -e ${{ matrix.env }}
64+
tests-passed:
65+
name: Tests Passed
66+
runs-on: ubuntu-latest
67+
needs:
68+
- test
69+
steps:
70+
- run: echo tests passed
6171
release-test-pypi:
6272
runs-on: ubuntu-latest
6373
if: startsWith(github.ref, 'refs/tags/')

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,6 @@ dmypy.json
127127

128128
# Pyre type checker
129129
.pyre/
130+
131+
# Don't commit lock file
132+
poetry.lock

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,18 @@
22

33
## [Unreleased]
44

5+
## [v1.0.2] - 2023-01-04
6+
7+
### Added
8+
9+
- Support for flake8 version 5
10+
511
## [v1.0.1] - 2023-01-03
612

713
### Fixed
814

915
- Fixed definition of a section start to be a non-empty line rather than based
10-
on whether it has a named header like
16+
on whether it has a named header
1117

1218
## [v1.0.0] - 2023-01-02
1319

@@ -71,3 +77,4 @@
7177
[//]: # "Release links"
7278
[v1.0.0]: https://github.com/jdkandersson/flake8-docstrings-complete/releases/v1.0.0
7379
[v1.0.1]: https://github.com/jdkandersson/flake8-docstrings-complete/releases/v1.0.1
80+
[v1.0.2]: https://github.com/jdkandersson/flake8-docstrings-complete/releases/v1.0.2

0 commit comments

Comments
 (0)