Skip to content

Commit

Permalink
Fixing entrypoint bug
Browse files Browse the repository at this point in the history
With the release of importlib_metadata 5.0 deprecation of an endpoint
has caused stevedore to fail (at least in python 3.7).  For now, I'm
pinning importlib-metadata to < 5.0.

See:
* python/importlib_metadata#409
* https://stackoverflow.com/questions/73929564/entrypoints-object-has-no-attribute-get-digital-ocean
  • Loading branch information
muhrin committed Oct 4, 2022
1 parent 15ee2a5 commit 41cfd09
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"dnspython", # Needed to be able to connect using domain name rather than IP
"pymongo<4.0",
"litemongo",
"importlib-metadata<5.0", # see: https://stackoverflow.com/questions/73929564/entrypoints-object-has-no-attribute-get-digital-ocean
"mongomock",
"bidict",
"networkx", # For reference graphs
Expand Down

0 comments on commit 41cfd09

Please sign in to comment.