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
Hello,
even though readme mentions that the package is available for python 3.12 as well, it always fails as distutils package is removed from python3.12. I tried to create pull request, but couldn't.
Solution 1 - external dependency, packaging, also dependency of pytest:
try:
import xdist
except ImportError:
pass
else:
from packaging.version import Version
xdist_version = Version(xdist.__version__)
if xdist_version >= Version("1.14"):
Hello,
even though readme mentions that the package is available for python 3.12 as well, it always fails as
distutils
package is removed from python3.12. I tried to create pull request, but couldn't.Solution 1 - external dependency, packaging, also dependency of pytest:
Solution 2 - without external dependency
The text was updated successfully, but these errors were encountered: