mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
setup.py: Add requires for installation from tarball
This commit is contained in:
parent
13a383e061
commit
180d665b6c
3
setup.py
3
setup.py
@ -79,6 +79,9 @@ extras_require = {
|
|||||||
if sys.platform == 'win32':
|
if sys.platform == 'win32':
|
||||||
requires.append('colorama>=0.3.5')
|
requires.append('colorama>=0.3.5')
|
||||||
|
|
||||||
|
if sys.version_info < (3, 5):
|
||||||
|
requires.append('typing')
|
||||||
|
|
||||||
# Provide a "compile_catalog" command that also creates the translated
|
# Provide a "compile_catalog" command that also creates the translated
|
||||||
# JavaScript files if Babel is available.
|
# JavaScript files if Babel is available.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user