limit setuptools version - #149
Conversation
|
That quick fix works for me. Wondering if we might as well unpin I think the main items affected by v2 are the security/authentication class refactor like: twitcher/twitcher/basicauth.py Lines 52 to 57 in 55e02be Given: https://docs.pylonsproject.org/projects/pyramid/en/latest/whatsnew-2.0.html#upgrading-auth-20 What's weird though is that Magpie does handle So they are possibly deprecated, but still functional? To be tested... |
|
I think this will be indirectly handled via #152 See for comparison this PR #153 that did not pin |
Pin
setuptools<82to ensure thatpkg_resourcesis installed (required until we upgrade topyramid>2).I noticed this issue when trying to test this library and I had to rebuild the python environment from scratch. The newest version of setuptools was installed which no longer contains
pkg_resources. Pyramid version 1 usespkg_resourcesfor asset resolution (finding static files) and so the whole app breaks if that library doesn't exist.