Skip to content

Commit

Permalink
Version 1.0.0 (#307)
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed May 31, 2023
1 parent ccafa6b commit 6416c18
Show file tree
Hide file tree
Showing 5 changed files with 404 additions and 669 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v3
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
We follow Semantic Versions since the `0.1.0` release.


## 1.0.0

### Features

- Drops `python3.7` support, because it has almost reached its EOL
- Adds `flake8@6` support and drops support of `flake8<5`


## 0.6.0

### Features
Expand Down
6 changes: 1 addition & 5 deletions flake8_broken_line.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
import re
import tokenize
from typing import Iterator, Sequence, Set, Tuple

try: # pragma: no cover
from importlib import metadata as importlib_metadata # type: ignore
except ImportError: # pragma: no cover
import importlib_metadata # type: ignore
from importlib import metadata as importlib_metadata

#: This is a name that we use to install this library:
pkg_name = 'flake8-broken-line'
Expand Down

0 comments on commit 6416c18

Please sign in to comment.