-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Work around https://github.com/pypa/pip/pull/9450 #60625
Work around https://github.com/pypa/pip/pull/9450 #60625
Conversation
❯ python
Python 3.6.8 (default, Apr 15 2020, 09:32:35)
[GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import logging
>>> logging.getLoggerClass()
<class 'logging.Logger'>
>>> import salt
>>> logging.getLoggerClass()
<class 'salt._logging.impl.SaltLoggingClass'>
>>> logging.getLogger("foo").verbose("blah")
>>> Works in theory... |
f137b5f
to
510bff1
Compare
re-run full all |
510bff1
to
ca11bc8
Compare
re-run full all |
* Also pin the ``pip`` upgrade to be ``<21.2`` * Work around pypa/pip#9450 See pypa/pip#10212 Co-authored-by: Megan Wilhite <[email protected]> Co-authored-by: Gareth J. Greenaway <[email protected]>
* Also pin the ``pip`` upgrade to be ``<21.2`` * Work around pypa/pip#9450 See pypa/pip#10212 Co-authored-by: Megan Wilhite <[email protected]> Co-authored-by: Gareth J. Greenaway <[email protected]>
I've encountered a possibly related error on Salt 3004.1, Ubuntu 22.04 and Python 3.10.4:
States: docker_package_installed:
pip.installed:
- name: docker
docker_network_present:
docker_network.present:
- name: test Succeeds on first run but on second run (when docker network is already present) it fails with the error above.
|
What version of pip is installed? |
Good call though, I've tested with more pip versions:
I suppose I can workaround this using |
What does this PR do?
Work around pypa/pip#9450
See pypa/pip#10212