Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v2
Expand Down
2,598 changes: 1,606 additions & 992 deletions poetry.lock

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "stata_kernel"
version = "1.14.2"
version = "1.14.3"
description = "A Jupyter kernel for Stata. Works with Windows, macOS, and Linux."
authors = [
"Kyle Barron <kylebarron2@gmail.com>",
Expand Down Expand Up @@ -35,32 +35,32 @@ pandas = ">=1.0"
numpy = ">=1.22.0"
pygments = "^2.2"
pexpect = "^4.6.0"
packaging = "^17.1"
packaging = ">=17.1"
pillow = ">=5.2.0"
pywin32 = { version = ">=223", platform = "Windows" }
fake-useragent = "^2.0.0"
IPython = "^7.34"
ipykernel = "^4.8.2"
jupyter-client = "^6.1.12"
IPython = ">=7.34,<10.0.0"
ipykernel = ">=4.8.2,<7.0.0"
jupyter-client = ">=6.1.12,<9.0.0"
jupyter-core = "^5.8.1"
notebook = "^6.5.7"
nbclient = "^0.8"
setuptools = "<81"
notebook = ">=6.5.7,<8.0.0"
nbclient = ">=0.8"
jupyterlab-stata-highlight3 = "^0.1.6"

[tool.poetry.dev-dependencies]
bumpversion = "^0.6"
bump2version = "^1.0.1"
mkdocs-material = ">=3.0.3"
mkdocs = ">=1.0"
yapf = ">=0.20.2"
pytest = ">=3.7.1"
jupyter_kernel_test = "0.3.0"
jupyter_kernel_test = ">=0.5.0"

[build-system]
requires = ["poetry-core>=1.8.1"]
build-backend = "poetry.core.masonry.api"

[tool.bumpver]
current_version = "1.14.2"
current_version = "1.14.3"
version_pattern = "MAJOR.MINOR.PATCH"
commit = true
tag = true
Expand Down
7 changes: 3 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.14.2
current_version = 1.14.3
commit = True
tag = True

Expand Down Expand Up @@ -33,8 +33,8 @@ column_limit = 80
continuation_indent_width = 4
dedent_closing_brackets = False
each_dict_entry_on_separate_line = True
i18n_comment =
i18n_function_call =
i18n_comment =
i18n_function_call =
indent_dictionary_value = True
indent_width = 4
join_multiple_lines = True
Expand Down Expand Up @@ -62,4 +62,3 @@ split_penalty_for_added_line_split = 30
split_penalty_import_names = 0
split_penalty_logical_operator = 300
use_tabs = False

2 changes: 1 addition & 1 deletion stata_kernel/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""An example Jupyter kernel"""

__version__ = '1.14.2'
__version__ = '1.14.3'
2 changes: 1 addition & 1 deletion stata_kernel/kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

class StataKernel(Kernel):
implementation = 'stata_kernel'
implementation_version = '1.14.2'
implementation_version = '1.14.3'
language = 'stata'
language_info = {
'name': 'stata',
Expand Down
2 changes: 1 addition & 1 deletion tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class StataKernelTestFramework(jupyter_kernel_test.KernelTests):
def _test_completion(self, text, matches=None, exact=True):
msg_id = self.kc.complete(text)
reply = self.kc.get_shell_msg()
jupyter_kernel_test.messagespec.validate_message(
jupyter_kernel_test.msgspec_v5.validate_message(
reply, 'complete_reply', msg_id)
if matches is not None:
if exact:
Expand Down