Skip to content

Commit

Permalink
Support flake8 5 (#14)
Browse files Browse the repository at this point in the history
* remove poetry lock file
* add support for flake8 version 5
* add typing extensions test dependency
  • Loading branch information
jdkandersson authored Jan 4, 2023
1 parent 90b31b7 commit 4d08fb2
Show file tree
Hide file tree
Showing 6 changed files with 66 additions and 841 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/ci-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
env:
- "test-flake85"
- "test-flake86"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -57,7 +60,14 @@ jobs:
- name: Install tox
run: python -m pip install tox
- name: Run testing
run: tox -e test
run: tox -e ${{ matrix.env }}
tests-passed:
name: Tests Passed
runs-on: ubuntu-latest
needs:
- test
steps:
- run: echo tests passed
release-test-pypi:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,6 @@ dmypy.json

# Pyre type checker
.pyre/

# Don't commit lock file
poetry.lock
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [v1.0.8] - 2023-01-04

### Added

- Support for flake8 version 5

## [v1.0.7] - 2022-12-29

### Fixed
Expand Down Expand Up @@ -38,3 +44,4 @@
[v1.0.5]: https://github.com/jdkandersson/flake8-test-docs/releases/v1.0.5
[v1.0.6]: https://github.com/jdkandersson/flake8-test-docs/releases/v1.0.6
[v1.0.7]: https://github.com/jdkandersson/flake8-test-docs/releases/v1.0.7
[v1.0.8]: https://github.com/jdkandersson/flake8-test-docs/releases/v1.0.8
Loading

0 comments on commit 4d08fb2

Please sign in to comment.