Skip to content

Commit

Permalink
added 'packaging' to requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
ticoneva committed Aug 15, 2022
1 parent 731c89a commit 8025fc9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pystata-kernel/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '0.1.20'
__version__ = '0.1.21'

from .kernel import PyStataKernel
4 changes: 2 additions & 2 deletions pystata-kernel/kernel.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'''
pystata-kernel
Version: 0.1.20
Version: 0.1.21
A simple Jupyter kernel based on pystata.
Requires Stata 17 and stata_setup.
'''
Expand All @@ -13,7 +13,7 @@

class PyStataKernel(IPythonKernel):
implementation = 'pystata-kernel'
implementation_version = '0.1.20'
implementation_version = '0.1.21'
language = 'stata'
language_version = '17'
language_info = {
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='pystata-kernel',
version='0.1.20',
version='0.1.21',
packages=['pystata-kernel'],
package_data={'pystata-kernel': ['logo-64x64.png']},
description='A simple Jupyter kernel for Stata based on pystata',
Expand All @@ -14,7 +14,7 @@
author_email='ticoneva@gmail.com',
url='https://github.com/ticoneva/pystata-kernel',
install_requires=[
'jupyter-client', 'ipython', 'ipykernel','stata-setup'
'jupyter-client', 'ipython', 'ipykernel','packaging'
],
include_package_data=True,
classifiers=[
Expand Down

0 comments on commit 8025fc9

Please sign in to comment.