-
Notifications
You must be signed in to change notification settings - Fork 683
Fix missing dependency on packaging
#590
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
Conversation
This package has been required since deprecation of `distutils`
@coox Thanks for your reporting. when I try to install latest version 2.0.19, i did not �found the error.
|
I meet same issue before. If you uninstall packaging and re-install mysql-replication the problem can be reproduced. |
@coox @gongyisheng I'll release this problem Thanks |
Thank you @sean-k1 and @gongyisheng! |
Description
Since the deprecation of
distutils
(#574), thepackaging
package has become a requirement, but was missing from the project’s dependencies.We noticed this when recently attempting to install pg_chameleon, only to end up facing a
ModuleNotFoundError
, which we traced back to this unsatisfied dependency.The present Pull Request fixes this by explicitly listing
packaging
as a dependency.Type of Change
Checklist
Tests