Pyramid 2.0.2 imports pkg_resources which was dropped from setuptools 81+. Pin to <81 until Pyramid removes its pkg_resources dependency.
10 lines
246 B
Text
10 lines
246 B
Text
# Python 3.12+ no longer bundles setuptools in venvs.
|
|
# Pyramid imports pkg_resources which was removed in setuptools 81+.
|
|
setuptools<81
|
|
|
|
# bpython shell and teach pyramid about it.
|
|
bpython
|
|
pyramid_bpython
|
|
|
|
# dev web application server.
|
|
waitress
|