You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However setuptools deprecated pkg_resources last year ( pypa/setuptools#3843 ). As a result we are seeing DeprecationWarnings when using anaconda-client
Currently
pkg_resources
is used inanaconda-client
. Here are a few cases based on GH searchhttps://github.com/Anaconda-Platform/anaconda-client/blob/f2d1601fc23fbe0fbdbd779c47ba423d93b9514a/binstar_client/__init__.py#L15
https://github.com/Anaconda-Platform/anaconda-client/blob/f2d1601fc23fbe0fbdbd779c47ba423d93b9514a/binstar_client/inspect_package/pypi.py#L14
However
setuptools
deprecatedpkg_resources
last year ( pypa/setuptools#3843 ). As a result we are seeingDeprecationWarning
s when usinganaconda-client
Maybe this can be phased out by using something like
importlib.metadata
added in Python 3.8The text was updated successfully, but these errors were encountered: