Opened 11 years ago

Closed 9 years ago

#21108 closed New feature (fixed)

pip install --pre Django==1.xb not found

Reported by: Elena Williams Owned by: nobody
Component: Packaging Version: dev
Severity: Normal Keywords: 1.8-alpha
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Pre-release version of Django cannot be installed using pip, even when pre-release flag is used.

This is a feature request (or report of feature incompleteness) not a bug.

We're developing against pre-release in anticipation of project launch after version release (and to assist bug-finding), the number of security releases recently has brought this to our attention as an extra layer of administration in this case.

Another scenario where this feature would have been useful was wanting to show someone pre-release version features in PyCon corridor-track but then needing to clarify that pip installation wasn't possible.

---

Twitter discussion on 17-Sep-2013 went as follows:
Elena Williams @elequ
(Whilst got all up in @freakboy3742 's face about at PyConAU, asking again): why for no pip install --pre django==1.6b4 ? #sadpony

Russell Keith-Magee @freakboy3742
@elequ Historically, because PyPI would interpret 1.6b4 as a 'newer' release than 1.5.4. Need to update our release process.

Elena Williams @elequ
@freakboy3742 Cool :) Just double-checking the last part of that. In whose face is it that one gets for that? Is there a bug I can follow?

Russell Keith-Magee @freakboy3742
@elequ @ubernostrum is the grand master of releases. No ticket tracking this that I'm aware of.

James Bennett @ubernostrum
@freakboy3742 @elequ Historically we avoid putting prerelease packages on PyPI so as not to confuse installers looking for "newest".

Alex Gaynor @alex_gaynor
@ubernostrum @freakboy3742 @elequ We should be able to put a .wheel up there, since old installers don’t know about it.

---
There may be a pre-existing ticket but searches from "prerelease", "pip pre" and some variations weren't forthcoming.

Change History (6)

comment:1 by Marc Tamlyn, 11 years ago

Triage Stage: UnreviewedAccepted
Type: UncategorizedNew feature

Yes please!

comment:2 by Tim Graham, 10 years ago

We tried this for the 1.7 alpha but there was some problem so we had to take the package down from PyPI. I think Donald said he would try to look into it.

comment:3 by Tim Graham, 10 years ago

Here is the twitter conversation reporting problems: https://twitter.com/lukesneeringer/status/431563673769750528

comment:4 by Tim Graham, 9 years ago

Keywords: 1.8-alpha added

The twitter conversation says to make this work "The link would be: https://pypi.python.org/pypi?%3Aaction=pkg_edit&name=django -- set 1.6.2 to Hide: No, and the rest to Yes. (Should only have to change 1.7a2)". We can try again for 1.8 alpha I suppose.

comment:5 by Carl Meyer, 9 years ago

The reporter is mis-informed in that Twitter conversation. Hide and Show on PyPI affects only what versions you can see via the human-facing web UI, it has no impact on pip whatsoever.

We actually still don't know from that Twitter convo what the problem was, exactly -- it would have been useful to know what pip version the reporter was using. Newer pip versions should never install a non-final release unless you provide the --pre tag.

One possibility is that the reporter found the issue via tox, which (until recently) used the --pre flag with its pip installs by default.

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

Resolution: fixed
Status: newclosed

In d9edd2f68f6edaa5e634a7d93b29fe97cb7312fe:

Fixed #21108 -- Updated how to release docs: prereleases now go to PyPI.

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