Environment
Running in a dockerfile.
Description
The following command works with pip 18.1 and fails with 19.0.
pip3 install --no-cache-dir --upgrade -r requirements.txt
With 19.0, it fails with the following exception:
Exception:
Traceback (most recent call last):
File "/Users/scotts/.virtualenvs/python3/lib/python3.6/site-packages/pip/_internal/cli/base_command.py", line 176, in main
status = self.run(options, args)
File "/Users/scotts/.virtualenvs/python3/lib/python3.6/site-packages/pip/_internal/commands/install.py", line 346, in run
session=session, autobuilding=True
File "/Users/scotts/.virtualenvs/python3/lib/python3.6/site-packages/pip/_internal/wheel.py", line 848, in build
assert building_is_possible
AssertionError
Removing the --no-cache-dir flag causes the install to succeed.
requirements.txt
Environment
Running in a dockerfile.
Description
The following command works with pip 18.1 and fails with 19.0.
With 19.0, it fails with the following exception:
Removing the
--no-cache-dirflag causes the install to succeed.requirements.txt