Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
kafonek committed Sep 1, 2021
1 parent f7b6496 commit ba55160
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 22 deletions.
2 changes: 1 addition & 1 deletion ipython_blocking/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from .ipython_blocking import CaptureExecution
from .ipython_magic import CaptureMagic, load_ipython_extensions

__version__ = "0.3.0"
__version__ = "0.3.1"

try:
# This won't load when get_ipython() isn't defined, e.g. in default python shell.
Expand Down
41 changes: 20 additions & 21 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
from setuptools import setup, find_packages
from setuptools import find_packages, setup

setup(name='ipython_blocking',
version='0.3.0',

author='Matt Kafonek',
author_email='[email protected]',
url='https://github.com/kafonek/ipython_blocking',

description='Context manager for blocking cell execution within a Jupyter notebook',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type = 'text/markdown',

packages=find_packages(),
install_requires=['IPython', 'ipywidgets', 'ipykernel>=6', 'nbclient', 'tornado'],

classifiers = ['Framework :: IPython',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
],
license='BSD')
setup(
name="ipython_blocking",
version="0.3.1",
author="Matt Kafonek",
author_email="[email protected]",
url="https://github.com/kafonek/ipython_blocking",
description="Context manager for blocking cell execution within a Jupyter notebook",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=["IPython", "ipywidgets", "nbclient"],
classifiers=[
"Framework :: IPython",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Development Status :: 3 - Alpha",
],
license="BSD",
)

0 comments on commit ba55160

Please sign in to comment.