Opened 11 years ago

Closed 11 years ago

#20529 closed Cleanup/optimization (fixed)

Django 1.6a1 is not available via pip install as per instructions

Reported by: Val Neekman Owned by: nobody
Component: *.djangoproject.com Version: 1.6-alpha-1
Severity: Normal Keywords: PyPI, pip
Cc: bmispelon@… Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The instruction on the download page indicates the availability of Django 1.6a1 via pip however, it seems that someone forgot to push the package to PyPi.
https://www.djangoproject.com/download/

============ LOG ===============
pip install Django==1.6a1
Downloading/unpacking Django==1.6a1

Could not find a version that satisfies the requirement Django==1.6a1 (from versions: 1.2.6, 1.3.6, 1.2.7, 1.2.3, 1.2.4, 1.4.4, 1.3.3, 1.2.1, 1.3.4, 1.2.2, 1.5, 1.3, 1.4.2, 1.4.5, 1.3.1, 1.1.3, 1.3.5, 1.2.5, 1.1.4, 1.2, 1.3.2, 1.3.7, 1.4.3, 1.4.1, 1.4, 1.5.1)

No distributions matching the version for Django==1.6a1

Change History (6)

comment:1 by Baptiste Mispelon, 11 years ago

Cc: bmispelon@… added
Component: Packaging*.djangoproject.com
Triage Stage: UnreviewedAccepted

I believe that's an issue of the download page itself, not with the packaging.

The view that renders this page can be found there: https://github.com/django/djangoproject.com/blob/master/releases/views.py#L9-L40

in reply to:  1 comment:2 by ugsheep, 11 years ago

Replying to bmispelon:
The views.py is fine.
From download.html (https://github.com/django/djangoproject.com/blob/master/templates/releases/download.html#L41), it appears the preview_version should also be uploaded to PyPI, but I'm not sure.

I believe that's an issue of the download page itself, not with the packaging.

The view that renders this page can be found there: https://github.com/django/djangoproject.com/blob/master/releases/views.py#L9-L40

comment:3 by Aymeric Augustin, 11 years ago

No, preview_version shouldn't be uploaded to PyPI, otherwise pip install Django would install it.

This is a bug in the website, not in the release process.

in reply to:  3 comment:4 by ugsheep, 11 years ago

Replying to aaugustin:
Oh, that makes sense. Thanks for your reply. :)

No, preview_version shouldn't be uploaded to PyPI, otherwise pip install Django would install it.

This is a bug in the website, not in the release process.

comment:5 by Val Neekman, 11 years ago

I hear you aaugustin. This is a very interesting situation.

Thanks for clearing that up.

comment:6 by Tim Graham <timograham@…>, 11 years ago

Resolution: fixed
Status: newclosed

In 70c28d928632afb5aaa290846096b24eab8cb450/djangoproject.com:

Fixed #20529 -- Removed incorrect mention that preview releases can be installed via pip.

Thanks un33k for the report.

Note: See TracTickets for help on using tickets.
Back to Top