#17897: Jsonschema and jsonpointer package
-------------------------------------+-------------------------------------
Reporter: vbraun | Owner:
Type: defect | Status: needs_review
Priority: major | Milestone: sage-6.6
Component: packages: | Resolution:
optional | Merged in:
Keywords: | Reviewers:
Authors: Volker Braun | Work issues:
Report Upstream: N/A | Commit:
Branch: | 4e068151f6bc1426b41c1fe481cd2547a33ad35e
u/vbraun/jsonschema_package | Stopgaps:
Dependencies: |
-------------------------------------+-------------------------------------
Comment (by fbissey):
From setup.py in ipython 3
{{{
# setuptools requirements
pyzmq = 'pyzmq>=13'
extras_require = dict(
parallel = [pyzmq],
qtconsole = [pyzmq, 'pygments'],
doc = ['Sphinx>=1.1', 'numpydoc'],
test = ['nose>=0.10.1', 'requests'],
terminal = [],
nbformat = ['jsonschema>=2.0'],
notebook = ['tornado>=4.0', pyzmq, 'jinja2', 'pygments',
'mistune>=0.5'],
nbconvert = ['pygments', 'jinja2', 'mistune>=0.3.1']
)
if not sys.platform.startswith('win'):
extras_require['notebook'].append('terminado>=0.3.3')
if sys.version_info < (3, 3):
extras_require['test'].append('mock')
extras_require['notebook'].extend(extras_require['nbformat'])
extras_require['nbconvert'].extend(extras_require['nbformat'])
install_requires = []
# add readline
if sys.platform == 'darwin':
if 'bdist_wheel' in sys.argv[1:] or not setupext.check_for_readline():
install_requires.append('gnureadline')
elif sys.platform.startswith('win'):
extras_require['terminal'].append('pyreadline>=2.0')
everything = set()
for deps in extras_require.values():
everything.update(deps)
extras_require['all'] = everything
}}}
So I think jsonpointer is not necessary but mistune is. I checked the
direct dependencies for jsonpointer but did not find anything.
--
Ticket URL: <http://trac.sagemath.org/ticket/17897#comment:9>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-trac.
For more options, visit https://groups.google.com/d/optout.