We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
python 3.12 dropped distutils, and there is a test in python-sparkpost using distutils.version.StrictVersion.
I suggest this simple replacement:
--- a/test/django/utils.py +++ b/test/django/utils.py @@ -1,7 +1,7 @@ -from distutils.version import StrictVersion +from packaging.version import Version from django import get_version def at_least_version(version): - return StrictVersion(get_version()) > StrictVersion(version) + return Version(get_version()) > Version(version)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
python 3.12 dropped distutils, and there is a test in python-sparkpost using distutils.version.StrictVersion.
I suggest this simple replacement:
The text was updated successfully, but these errors were encountered: