lmcinnes / umap

Uniform Manifold Approximation and Projection
BSD 3-Clause "New" or "Revised" License
7.39k stars 803 forks source link

Fix `pkg_resources` deprecation warning #1072

Closed laclouis5 closed 10 months ago

laclouis5 commented 10 months ago

The package pkg_resources is deprecated. This PR implements using importlib instead for getting the version number.

laclouis5 commented 10 months ago

Note that the tests fail because Python3.7 is tested and importlib was only added in Python3.8. However, Python3.7 has reached end-of-life and won't be maintained in the future. I think that it should be a reasonable choice to drop support for Python3.7.

lmcinnes commented 10 months ago

Thanks!