Tests/CI broken on Python 3.12 #1054
mportesdev
started this conversation in
General
Replies: 1 comment
-
The latter seems to be already addressed here mtreinish/stestr@112598d (but not included in a published release yet). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Python 3.12 does not include setuptools automatically in a virtual environment. As a result, running
tox run -e py312
fails (with a weird messagestestr: 'run' is not a stestr command.
)After installing setuptools manually, running
tox run -e py312
errors withModuleNotFoundError: No module named 'imp'
. Theimp
module is removed in Python 3.12, however it is required by the future package, which in turn is required bystestr
.Beta Was this translation helpful? Give feedback.
All reactions