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
Also pkg_resources is being deprecated in the future. Python3.7 support stops on 27 Jun 2023 and then we should probably use importlib and importlib_metadata instead of pkg_resources.
PR #34 should resolve the pkg_resources API deprecations.
I believe that the namespace deprecation you observed is likely coming from the zc.lockfile package. The whinge there for the long-standing practice of having __init__.py in a namespace package directory isn't anything we can address in zodburi.
setuptools has just been released: https://setuptools.pypa.io/en/latest/history.html#v67-3-0
On a clean virtualenv, install
zodburi
,setuptools==67.3.1
and pytest, and run a dummy test:This will raise this warning:
The warning is not raised with setuptools 66
The text was updated successfully, but these errors were encountered: