Skip to content

Commit

Permalink
Bump version to 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
srstevenson committed Jun 11, 2024
1 parent d4ab887 commit 8e18340
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ snippet to `.pre-commit-config.yaml` in the root of your repository:
```yaml
repos:
- repo: https://github.com/srstevenson/nb-clean
rev: 3.2.0
rev: 3.3.0
hooks:
- id: nb-clean
```
Expand All @@ -244,7 +244,7 @@ filenames, which `pre-commit` will append to the list of arguments.
```yaml
repos:
- repo: https://github.com/srstevenson/nb-clean
rev: 3.2.0
rev: 3.3.0
hooks:
- id: nb-clean
args:
Expand Down
13 changes: 5 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nb-clean"
version = "3.2.0"
version = "3.3.0"
description = "Clean Jupyter notebooks for versioning"
authors = ["Scott Stevenson <[email protected]>"]
license = "ISC"
Expand All @@ -9,9 +9,9 @@ homepage = "https://github.com/srstevenson/nb-clean"
repository = "https://github.com/srstevenson/nb-clean"
keywords = ["jupyter", "notebook", "clean", "filter", "git"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Natural Language :: English",
]
include = ["images/nb-clean.png"]

Expand All @@ -35,10 +35,7 @@ requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.coverage.report]
exclude_also = [
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
exclude_also = ["if __name__ == .__main__.:", "if TYPE_CHECKING:"]

[tool.mypy]
check_untyped_defs = true
Expand Down
2 changes: 1 addition & 1 deletion src/nb_clean/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import nbformat
from typing_extensions import Self

VERSION = "3.2.0"
VERSION = "3.3.0"
GIT_ATTRIBUTES_LINE = "*.ipynb filter=nb-clean"


Expand Down

0 comments on commit 8e18340

Please sign in to comment.