import fsspec throws error (AttributeError: 'EntryPoints' object has no attribute 'get')
[]
Asked
Active
Viewed 797 times
0

Abhijit Das
- 111
- 2
- 8
-
Note that this is only an issue on python 3.7 – mdurant Oct 07 '22 at 18:01
-
Can you please share the source where it says other Python version would work? – Abhijit Das Oct 07 '22 at 20:30
-
1It showed up in py37 tests. importlib-metadata is a backport package on py37, but builtin for >=38. – mdurant Oct 07 '22 at 20:43
1 Answers
0
@Abjiji Das
Please pin importlib-metadata<5.0.0
, this is an issue from fsspec
side and the older kedro does not have an upper bound for it.
See details here: https://github.com/kedro-org/kedro/issues/1895

mediumnok
- 180
- 1
- 9
-
Used importlib-metadata==3.10.0 for Kedro 0.17.3 not helping. Same error – Abhijit Das Oct 07 '22 at 17:09