Opened 8 years ago

Closed 8 years ago

Last modified 8 years ago

#25769 closed Cleanup/optimization (fixed)

Update utils.version.get_version() for new release candidate naming scheme

Reported by: Tim Graham Owned by: nobody
Component: Utilities Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

For release candidate versions, setuptools 8.0+ generates filenames like "Django-1.9rc1.tar.gz" instead "Django-1.9c1.tar.gz" ('rc' instead of 'c').

PEP 386 has been superseded by PEP 440 which recommends “rc” because almost everyone was using “rc” and not “c”.

Change History (3)

comment:1 by Tim Graham, 8 years ago

Has patch: set

comment:2 by Tim Graham <timograham@…>, 8 years ago

Resolution: fixed
Status: newclosed

In 4921d4e5:

Fixed #25769 -- Updated get_version() release candidate naming for PEP 0440.

comment:3 by Tim Graham <timograham@…>, 8 years ago

In d45cfef:

Refs #25769 -- Updated docs to reflect get_version() uses PEP 0440.

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