Skip to content

Commit

Permalink
Support flake8 version 5 (#12)
Browse files Browse the repository at this point in the history
* remove poetry lock file
* move dev dependencies to tox
* add ci-cd tests for flake8 versions
* increment version number
* add tags for python versions
  • Loading branch information
jdkandersson authored Jan 4, 2023
1 parent 8e7131c commit fcc7a58
Show file tree
Hide file tree
Showing 6 changed files with 65 additions and 812 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.2.4] - 2023-01-04

### Added

- Support for flake8 version 5

## [v1.2.3] - 2022-12-28

- Change to using inbuilt types rather than from `typing`
Expand Down Expand Up @@ -47,3 +53,4 @@
[v1.1.0]: https://github.com/jdkandersson/flake8-error-link/releases/v1.1.0
[v1.2.2]: https://github.com/jdkandersson/flake8-error-link/releases/v1.2.2
[v1.2.3]: https://github.com/jdkandersson/flake8-error-link/releases/v1.2.3
[v1.2.4]: https://github.com/jdkandersson/flake8-error-link/releases/v1.2.4
Loading

0 comments on commit fcc7a58

Please sign in to comment.