Skip to content
Snippets Groups Projects
Verified Commit 66981490 authored by sunpoet's avatar sunpoet
Browse files

devel/py-nbformat: Update to 5.5.0

parent 6879948f
No related branches found
No related tags found
No related merge requests found
PORTNAME= nbformat
PORTVERSION= 5.4.0
PORTVERSION= 5.5.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
......@@ -24,4 +24,7 @@ USE_PYTHON= autoplist concurrent distutils pytest
NO_ARCH= yes
post-patch:
@${SED} -e 's|%%PORTVERSION%%|${PORTVERSION}|' ${FILESDIR}/setup.py > ${WRKSRC}/setup.py
.include <bsd.port.mk>
TIMESTAMP = 1652122931
SHA256 (nbformat-5.4.0.tar.gz) = 44ba5ca6acb80c5d5a500f1e5b83ede8cbe364d5a495c4c8cf60aaf1ba656501
SIZE (nbformat-5.4.0.tar.gz) = 137589
TIMESTAMP = 1663673074
SHA256 (nbformat-5.5.0.tar.gz) = 9ebe30e6c3b3e5b47d39ff0a3897a1acf523d2bfafcb4e2d04cdb70f8a66c507
SIZE (nbformat-5.5.0.tar.gz) = 141188
#!/usr/bin/env python
# setup.py generated by flit for tools that don't yet use PEP 517
from distutils.core import setup
packages = \
['nbformat',
'nbformat.corpus',
'nbformat.corpus.tests',
'nbformat.v1',
'nbformat.v2',
'nbformat.v3',
'nbformat.v4']
package_data = \
{'': ['*']}
install_requires = \
['fastjsonschema', 'jsonschema>=2.6', 'jupyter_core', 'traitlets>=5.1']
extras_require = \
{'test': ['check-manifest', 'testpath', 'pytest', 'pre-commit', 'pep440']}
entry_points = \
{'console_scripts': ['jupyter-trust = '
'nbformat.sign:TrustNotebookApp.launch_instance']}
setup(name='nbformat',
version='%%PORTVERSION%%',
description='The Jupyter Notebook format',
author=None,
author_email='Jupyter Development Team <jupyter@googlegroups.com>',
url=None,
packages=packages,
package_data=package_data,
install_requires=install_requires,
extras_require=extras_require,
entry_points=entry_points,
python_requires='>=3.7',
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment