Skip to content

Commit 267a559

Browse files
authored
deps: support flake8 v5
1 parent 12e26cb commit 267a559

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
strategy:
2020
matrix:
2121
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', 'pypy3']
22-
isort: [4.3.21, 5.9.3]
23-
flake8: [3.9.2, 4.0.1]
22+
isort: [4.3.21, 5.10.1]
23+
flake8: [3.9.2, 4.0.1, 5.0.1]
2424

2525
steps:
2626
- uses: actions/checkout@v2

flake8_isort.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import warnings
1111

1212

13-
__version__ = '4.1.2.post1.dev0'
13+
__version__ = '4.2.0'
1414

1515

1616
class Flake8IsortBase(object):

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def get_version(file="flake8_isort.py"):
5555
include_package_data=True,
5656
zip_safe=False,
5757
install_requires=[
58-
'flake8 >= 3.2.1, <5',
58+
'flake8 >= 3.2.1, <6',
5959
'isort >= 4.3.5, <6',
6060
],
6161
extras_require={

0 commit comments

Comments
 (0)