bigmlcom / sensenet

0 stars 8 forks source link

Missing dependency importlib_resources #17

Closed unmonoqueteclea closed 3 years ago

unmonoqueteclea commented 3 years ago

As importlib.resources is only available in Python3.7+, you are doing this in pretrained.py

   try:
        import importlib.resources as pkg_resources
    except ImportError:
        import importlib_resources as pkg_resources

However, setup.py is not including the importlib_resources dependency, which is not part of Python's standard library

charleslparker commented 3 years ago

This was the thing that was nagging at my brain!

charleslparker commented 3 years ago

This should be fixed by fec5fdc. I'm installing it just in case.

unmonoqueteclea commented 3 years ago

Fixed, thanks