Skip to content

Commit

Permalink
Fix AssertionError and prep 0.0.27 release (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitsanj authored Jun 16, 2023
1 parent 9245438 commit 7bcecc9
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.26
current_version = 0.0.27
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
serialize =
{major}.{minor}.{patch}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup nox
uses: daisylb/[email protected]
- name: Setup poetry
uses: Gr1N/setup-poetry@v7
uses: Gr1N/setup-poetry@v8
with:
poetry-version: 1.4.1
- name: Install dependencies
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Setup nox
uses: daisylb/[email protected]
- name: Setup poetry
uses: Gr1N/setup-poetry@v7
uses: Gr1N/setup-poetry@v8
with:
poetry-version: 1.4.1
- name: Install dependencies
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.0.27] - 2023-06-16
### Fixed
- Fix run_sync AssertionError by making async_interrupt_kernel actually async

## [0.0.26] - 2023-04-17
## Changed
- Upgrade noteable-origami to 0.0.24
Expand Down
2 changes: 1 addition & 1 deletion papermill_origami/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "0.0.26"
version = "0.0.27"
2 changes: 1 addition & 1 deletion papermill_origami/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ async def async_has_kernel(self):

has_kernel = run_sync(async_restart_kernel)

def async_interrupt_kernel(self):
async def async_interrupt_kernel(self):
"""Interrupts active execution on a live kernel"""
raise NotImplementedError("TODO")

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[tool.poetry]
name = "papermill-origami"
version = "0.0.26"
version = "0.0.27"
description = "The noteable API interface"
authors = ["Matt Seal <[email protected]>"]
maintainers = ["Matt Seal <[email protected]>"]
Expand Down

0 comments on commit 7bcecc9

Please sign in to comment.