Skip to content

Commit eddfd7f

Browse files
Fix Python 3.12 flake8 compatibility: upgrade importlib-metadata to >=6.0.0
- Fixes AttributeError: 'EntryPoints' object has no attribute 'get' - importlib-metadata 6.0.0+ has the updated EntryPoints API for Python 3.12 - This should resolve the flake8 compatibility issues with pytest-flake8
1 parent 97c5a97 commit eddfd7f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

requirements-dev.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
tox
22
pytest
33
pytest-cov
4-
pytest-flake8
5-
flake8==3.9.2
4+
pytest-flake8>=1.1.0
5+
flake8>=5.0.0
66
dataclasses
77
scanoss
8-
importlib-metadata==4.12.0
8+
importlib-metadata>=6.0.0
99
pytest-xdist

0 commit comments

Comments
 (0)