-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
Deprecation warning on recent Python versions #36
Comments
PEP632 states that you must use the packaging.version.Version() class to substitute the distutils one.
Running it yields not so good results...
Apparently packaging.version uses a fixed regex that doesn't recognize the "150500" that SLE uses. |
As expected, the default regex is awfully complex: https://regex101.com/r/ryw6wU/1 |
Users are getting this warning on newer Python versions:
This is due to PEP 632, which will deprecate the Distutils package in the near future.
We need to re-implement the same features with setuptools.
The text was updated successfully, but these errors were encountered: