Skip to content

Commit 66527a6

Browse files
semarjclaude
andcommitted
Fix flake8 dependency conflicts
- Update mccabe from 0.6.1 to >=0.7.0 - Update pycodestyle from 2.7.0 to >=2.10.0 - Update pyflakes from 2.3.1 to >=3.0.0 These updates resolve dependency conflicts with the newer flake8>=6.0.0 which requires these minimum versions. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
1 parent 08988fc commit 66527a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jinja2==3.0.1; python_version >= "3.6" and python_version < "4.0"
3434
markupsafe==2.0.1; python_version >= "3.6" and python_version < "4.0"
3535
marshmallow==3.13.0; python_version >= "3.6"
3636
marshmallow-enum==1.5.1; python_version >= "3.6"
37-
mccabe==0.6.1; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
37+
mccabe>=0.7.0; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
3838
multidict>=6.0.0; python_version >= "3.6"
3939
mypy-extensions==0.4.3; python_version >= "3.6"
4040
nodeenv==1.6.0; python_full_version >= "3.6.1"
@@ -45,8 +45,8 @@ pluggy>=1.0.0; python_version >= "3.6" and python_full_version < "3.0.0" or pyth
4545
poetry-dynamic-versioning==0.13.0; python_version >= "3.5" and python_version < "4.0"
4646
pre-commit==2.13.0; python_full_version >= "3.6.1"
4747
py>=1.11.0; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6"
48-
pycodestyle==2.7.0; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
49-
pyflakes==2.3.1; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
48+
pycodestyle>=2.10.0; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
49+
pyflakes>=3.0.0; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
5050
pygments==2.9.0; python_version >= "3.5"
5151
pyparsing==2.4.7; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.3.0" and python_version >= "3.6"
5252
pytest>=7.0.0; python_version >= "3.6"

0 commit comments

Comments
 (0)