Opened 8 years ago

Closed 8 years ago

Last modified 8 years ago

#26637 closed Bug (fixed)

Docs says Sphinx 1.0.2 is required but code says 1.3

Reported by: Jan Pazdziora Owned by: nobody
Component: Documentation Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The https://docs.djangoproject.com/en/dev/internals/contributing/writing-documentation/ says:

Note
Building the Django documentation requires Sphinx 1.0.2 or newer.

When I install python-sphinx-1.2.3-4.fc23.noarch and run make html, I get

Making output directory...
Running Sphinx v1.2.3
Sphinx version error:
This project needs at least Sphinx v1.3 and therefore cannot be built with this version.

Indeed, docs/conf.py has

needs_sphinx = '1.3' # Actually 1.3.4, but micro versions aren't supported here.

Change History (3)

comment:1 by Jan Pazdziora, 8 years ago

Has patch: set

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

Resolution: fixed
Status: newclosed

In 2e1d44e:

Fixed #26637 -- Removed obsolete note in docs/internals/contributing/writing-documentation.txt

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

In d1c6e06:

[1.9.x] Fixed #26637 -- Removed obsolete note in docs/internals/contributing/writing-documentation.txt

Backport of 2e1d44e46d1ea3d8c9fdc5c323a127f51006f6c3 from master

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