Open daybarr opened 7 years ago
Observe that this work ok when wheel is downloaded from an index server
(buildout.wheel.test)
day.barr@win10-laptop MINGW64 ~/dev/buildout.wheel.test
$ bin/buildout -U django:index=https://pypi.python.org/simple/
Installing django.
Getting distribution for 'Django==1.11'.
Got Django 1.11.
Getting distribution for 'pytz'.
Got pytz 2017.2.
Generated script 'C:\\Users\\day.barr\\dev\\buildout.wheel.test\\bin\\django-admin'.
Generated script 'C:\\Users\\day.barr\\dev\\buildout.wheel.test\\bin\\django-admin.py'.
It seems that we have to be installing directly from local file system (thanks to find_links = .
in the buildout.cfg
) to hit the bug.
Using buildout.wheel 0.2.0 with zc.buildout 2.9.3, github bash on Windows 10.
Steps to reproduce follow.
First Prepare a buildout.cfg in empty directory, bootstrap buildout into a new virtualenv, download the Django wheel to local directory.
Now try to
buildout install
(-U
to be sure I'm not using my user prefs (cache etc)):Note that the path in the
.whl
archive that we should be looking for is 'Django-1.11.dist-info/RECORD' (note uppercaseD
).