Unpin flake8 in tox.ini

Currently, flake8 crashes with this error:

  AttributeError: module 'configparser' has no attribute 'SafeConfigParser'. Did you mean: 'RawConfigParser'?

flake8 is pinned to an older version, and unpinning fixes the issue.
The original rationale for pinning was until this issue was fixed:
https://github.com/savoirfairelinux/flake8-copyright/issues/19 .

The issue has been closed, so a simple solution is to unpin it.

Change-Id: I6d62514662b7818f52115a914ec43761b728eec5
This commit is contained in:
Samuel Allan
2024-06-18 15:08:36 +09:30
parent da9f54d56f
commit 9e2f09ab31

View File

@@ -35,7 +35,7 @@ commands =
description = Alias for lint
deps =
black
flake8<6
flake8
flake8-docstrings
flake8-copyright
flake8-builtins