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
Is your feature request related to a problem? Please describe.
I am using oaklib in a project and import oaklib results in:
tests/unit/test_term_set.py:17: in <module>
import oaklib # noqa: F401
../../../miniconda3/envs/temp2/lib/python3.12/site-packages/oaklib/__init__.py:11: in <module>
from oaklib.selector import get_adapter, get_implementation_from_shorthand # noqa:F401
../../../miniconda3/envs/temp2/lib/python3.12/site-packages/oaklib/selector.py:16: in <module>
from oaklib.implementations import GildaImplementation
../../../miniconda3/envs/temp2/lib/python3.12/site-packages/oaklib/implementations/__init__.py:20: in <module>
from oaklib.implementations.ncbi.ncbi_gene_implementation import NCBIGeneImplementation
../../../miniconda3/envs/temp2/lib/python3.12/site-packages/oaklib/implementations/ncbi/ncbi_gene_implementation.py:14: in <module>
from oaklib.implementations.ncbi.eutils_implementation import EUtilsImplementation
../../../miniconda3/envs/temp2/lib/python3.12/site-packages/oaklib/implementations/ncbi/eutils_implementation.py:9: in <module>
from eutils import Client
../../../miniconda3/envs/temp2/lib/python3.12/site-packages/eutils/__init__.py:4: in <module>
import pkg_resources
../../../miniconda3/envs/temp2/lib/python3.12/site-packages/pkg_resources/__init__.py:98: in <module>
warnings.warn(
E DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html
This was fixed in #176 in April but has not yet been released. The last release of eutils, 0.6.0, was in 2019. There have been a few commits to this repo since then such as merging #176. Could you release a new version of eutils soon?
This is not a big deal, but we would like to not raise warnings in our library or its dependencies that may confuse end-users if possible. Thanks!
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I am using oaklib in a project and
import oaklib
results in:This was fixed in #176 in April but has not yet been released. The last release of
eutils
, 0.6.0, was in 2019. There have been a few commits to this repo since then such as merging #176. Could you release a new version ofeutils
soon?This is not a big deal, but we would like to not raise warnings in our library or its dependencies that may confuse end-users if possible. Thanks!
The text was updated successfully, but these errors were encountered: