-
-
Notifications
You must be signed in to change notification settings - Fork 526
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
Virtualenv 20.0.0 breaks tox #1516
Comments
This is upstream bug pypa/virtualenv#1545, please report the requested information there. |
But until it is fixed on virtualenv's side, wouldn't it be better to freeze the dependency to virtualenv 16? Currently any fresh new install or dependency update of tox will be broken. |
It's likely virtualenv will fix this before tox release gets out. |
@yelsherbini can you please provide the requested information? How did you install tox? |
This shouldn't be closed as this is a current problem. If you just run |
@smitt04 if you want to help please provide information on pypa/virtualenv#1545 PS. We can leave this open, but the actionable item, for now, is on the virtualenv side. |
I understand it is an issue in
|
Would it be possible to update tox's requirement for six to match the version required by virtualenv 20 (>= 1.12.0)? It could be argued that it's not strictly needed by tox, but pip does not properly handle the transitive dependency (pypa/pip#988), so we are in a catch-22 situation until either side provides a fix. |
* Pin virtualenv to v16 tox-dev/tox#1516 * Add --rm to docker run commands * Pylint: check unused import in __init__.py files
When running
Minimal reproducible exampleBuilld the following Dockerfile: FROM ubuntu:18.04
RUN apt-get update
RUN apt-get install -y \
python3 \
python3-pip \
python3-dev
RUN pip3 install -U pip
RUN pip3 install -U tox
RUN pip list
# The following is a command tox would normally call:
RUN /usr/bin/python3 -m virtualenv --no-download --python /usr/bin/python3 .package
|
While updating dependencies virtualenv got updated to version 20.0.0. After the update running tox returns the following error
To reproduce:
The text was updated successfully, but these errors were encountered: