FS#54163 - [python2-sphinx] depends on missing typing module
Attached to Project:
Community Packages
Opened by Mark Schott (mesnaround) - Tuesday, 23 May 2017, 04:40 GMT
Last edited by Doug Newgard (Scimmia) - Wednesday, 24 May 2017, 03:24 GMT
Opened by Mark Schott (mesnaround) - Tuesday, 23 May 2017, 04:40 GMT
Last edited by Doug Newgard (Scimmia) - Wednesday, 24 May 2017, 03:24 GMT
|
Details
After upgrading to python2-sphinx-1.6.1.1 spyder crashes on
startup. Downgrading to python2-sphinx-1.5.5.1 fixes the
issue. The errors are the following:
Traceback (most recent call last): File "/usr/lib/python2.7/site-packages/spyder/app/mainwindow.py", line 3011, in main mainwindow = run_spyder(app, options, args) File "/usr/lib/python2.7/site-packages/spyder/app/mainwindow.py", line 2913, in run_spyder main.setup() File "/usr/lib/python2.7/site-packages/spyder/app/mainwindow.py", line 784, in setup from spyder.plugins.help import Help File "/usr/lib/python2.7/site-packages/spyder/plugins/help.py", line 33, in <module> from spyder.utils.help.sphinxify import (CSS_PATH, generate_context, File "/usr/lib/python2.7/site-packages/spyder/utils/help/sphinxify.py", line 32, in <module> from sphinx.application import Sphinx File "/usr/lib/python2.7/site-packages/sphinx/application.py", line 30, in <module> from sphinx.config import Config File "/usr/lib/python2.7/site-packages/sphinx/config.py", line 16, in <module> from typing import Any, NamedTuple, Union ImportError: No module named typing ---------------------------------------------------------------------------------------------------------------------------------------------------- I'm running the latest spyder (3.1.4-1). I tried spyder --reset to no avail. |
This task depends upon
Closed by Doug Newgard (Scimmia)
Wednesday, 24 May 2017, 03:24 GMT
Reason for closing: Fixed
Additional comments about closing: python2-sphinx 1.6.1-3
Wednesday, 24 May 2017, 03:24 GMT
Reason for closing: Fixed
Additional comments about closing: python2-sphinx 1.6.1-3
Comment by Michel (xantares) -
Tuesday, 23 May 2017, 07:36 GMT
yes, it's a builtin module for since python 3.6, but there is a
backport module.