Skip to content

Commit

Permalink
build: set a minimum version for flakeheaven
Browse files Browse the repository at this point in the history
Without this a very old flakeheaven is selected which does not work.
This is likely due to the new release of flakeheaven having some version
constraints that bump heads with other dependencies.

Without this the flake8 step of CI fails consistently.
  • Loading branch information
aucampia committed Jul 30, 2022
1 parent 283bef2 commit 696d4f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.flake8.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
flake8
flakeheaven; python_version >= '3.8.0'
flakeheaven >= 2.1.3; python_version >= '3.8.0'
pep8-naming
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"dev": [
"black==22.6.0",
"flake8",
"flakeheaven; python_version >= '3.8.0'",
"flakeheaven >= 2.1.3; python_version >= '3.8.0'",
"isort",
"mypy",
"pep8-naming",
Expand Down

0 comments on commit 696d4f6

Please sign in to comment.