Skip to content

Commit 1d5b6ce

Browse files
authored
Update requirements.txt to latest (#126)
* Update requirements.txt to latest * Fix drop Python3.7 and add Python3.11 * Fix flake8-print error code
1 parent 6ed6e44 commit 1d5b6ce

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ['3.7', '3.8', '3.9', '3.10']
11+
python-version: ['3.8', '3.9', '3.10', '3.11']
1212

1313
steps:
1414
- uses: actions/checkout@v2

doq/_shtab.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
class PrintCompletionAction(Action):
77
def __call__(self, parser, namespace, values, option_string=None):
8-
print('Please install shtab firstly!') # noqa: T001 print found
8+
print('Please install shtab firstly!') # noqa: T201 print found
99
parser.exit(0)
1010

1111

requirements.txt

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
bandit==1.7.1
2-
flake8==3.9.2
1+
bandit==1.7.5
2+
flake8==6.1.0
33
flake8-coding==1.3.2
44
flake8-commas==2.1.0
5-
flake8-comprehensions==3.7.0
6-
flake8-debugger==4.0.0
7-
flake8-docstrings==1.6.0
8-
flake8-import-order==0.18.1
9-
flake8-print==4.0.0
5+
flake8-comprehensions==3.14.0
6+
flake8-debugger==4.1.2
7+
flake8-docstrings==1.7.0
8+
flake8-import-order==0.18.2
9+
flake8-print==5.0.0
1010
flake8-string-format==0.3.0
11-
jinja2==3.0.2
12-
pep8-naming==0.12.1
13-
parameterized==0.8.1
11+
jinja2==3.1.2
12+
pep8-naming==0.13.3
13+
parameterized==0.9.0
1414
parso==0.8.3
1515
toml==0.10.2

0 commit comments

Comments
 (0)