lofar-astron / RMextract

extract TEC, vTEC, Earthmagnetic field and Rotation Measures from GPS and WMM data for radio interferometry observations
GNU General Public License v3.0
31 stars 22 forks source link

pkg_resources has been removed in Python 3.12 #58

Open gmloose opened 2 months ago

gmloose commented 2 months ago

There is yet another compatibility issue with Python 3.12. The package pkg_resources, that was already deprecated, has been removed from Python 3.12. This package is used in the following three files:

In this case the alternative is to use importlib.resources (or its back-ported cousin importlib_resources).