Skip to content

Commit

Permalink
devel/py-ipykernel: Update to 6.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sunpoet committed Jun 9, 2022
1 parent 2ca82fd commit 0e595dd
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 4 deletions.
5 changes: 4 additions & 1 deletion devel/py-ipykernel/Makefile
@@ -1,7 +1,7 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>

PORTNAME= ipykernel
PORTVERSION= 6.13.0
PORTVERSION= 6.13.1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
Expand All @@ -27,4 +27,7 @@ USE_PYTHON= autoplist concurrent distutils

NO_ARCH= yes

post-patch:
@${SED} -e 's|%%PORTVERSION%%|${PORTVERSION}|' ${FILESDIR}/setup.py > ${WRKSRC}/setup.py

.include <bsd.port.mk>
6 changes: 3 additions & 3 deletions devel/py-ipykernel/distinfo
@@ -1,3 +1,3 @@
TIMESTAMP = 1650228770
SHA256 (ipykernel-6.13.0.tar.gz) = 0e28273e290858393e86e152b104e5506a79c13d25b951ac6eca220051b4be60
SIZE (ipykernel-6.13.0.tar.gz) = 131331
TIMESTAMP = 1654708340
SHA256 (ipykernel-6.13.1.tar.gz) = 6f42070a5d87ecbf4a2fc27a7faae8d690fd3794825a090ddf6b00b9678a5b69
SIZE (ipykernel-6.13.1.tar.gz) = 134356
53 changes: 53 additions & 0 deletions devel/py-ipykernel/files/setup.py
@@ -0,0 +1,53 @@
# -*- coding: utf-8 -*-
from setuptools import setup

setup(
name='ipykernel',
version='%%PORTVERSION%%',
description='IPython Kernel for Jupyter',
long_description='# IPython Kernel for Jupyter\n\nThis package provides the IPython kernel for Jupyter.\n\n## Installation from source\n\n1. `git clone`\n2. `cd ipykernel`\n3. `pip install -e ".[test]"`\n\nAfter that, all normal `ipython` commands will use this newly-installed version of the kernel.\n\n## Running tests\n\nFollow the instructions from `Installation from source`.\n\nand then from the root directory\n\n```bash\npytest ipykernel\n```\n\n## Running tests with coverage\n\nFollow the instructions from `Installation from source`.\n\nand then from the root directory\n\n```bash\npytest ipykernel -vv -s --cov ipykernel --cov-branch --cov-report term-missing:skip-covered --durations 10\n```\n',
author_email='IPython Development Team <ipython-dev@scipy.org>',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
install_requires=[
'appnope; platform_system == "Darwin"',
'debugpy>=1.0',
'ipython>=7.23.1',
'jupyter-client>=6.1.12',
'matplotlib-inline>=0.1',
'nest-asyncio',
'packaging',
'psutil',
'tornado>=6.1',
'traitlets>=5.1.0',
],
extras_require={
'test': [
'flaky',
'ipyparallel',
'pre-commit',
'pytest-cov',
'pytest-timeout',
'pytest>=6.0',
],
},
packages=[
'ipykernel',
'ipykernel.comm',
'ipykernel.gui',
'ipykernel.inprocess',
'ipykernel.inprocess.tests',
'ipykernel.pylab',
'ipykernel.tests',
],
)

0 comments on commit 0e595dd

Please sign in to comment.