Skip to content

Commit

Permalink
Merge pull request #910 from minrk/changelog-9
Browse files Browse the repository at this point in the history
changelog, metadata updates for 9.0
  • Loading branch information
minrk authored Nov 5, 2024
2 parents 0a9ba8e + b016d89 commit 6f80ae3
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
12 changes: 12 additions & 0 deletions docs/source/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@

Changes in IPython Parallel

## 9.0 - 2024-11

IPython Parallel 9 is a small major release.

The biggest new feature highlight is Windows support for SSHLauncher (thanks [@ottointhesky](https://github.com/ottointhesky)!)

Other changes:

- Compatibility fixes for upcoming ipykernel 7 (ipykernel 6.9.1 is now required)
- JupyterLab extension dependencies are updated from 3.x to JupyterLab 4.3
- Use `importlib.metadata` instead of deprecated `entrypoints` (no effect for users)

## 8.8

### 8.8.0 - 2024-04-02
Expand Down
2 changes: 1 addition & 1 deletion ipyparallel/_version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import re

__version__ = "8.9.0.dev"
__version__ = "9.0.0.dev"

# matches tbump regex in pyproject.toml
_version_regex = re.compile(
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipyparallel-labextension",
"version": "8.9.0",
"version": "9.0.0",
"private": true,
"description": "A JupyterLab extension for IPython Parallel.",
"keywords": [
Expand Down
10 changes: 3 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "hatchling.build"

[project]
name = "ipyparallel"
version = "8.9.0.dev"
version = "9.0.0.dev"
authors = [{name = "IPython Development Team", email = "[email protected]"}]
license = {file = "COPYING.md"}
readme = "README.md"
Expand All @@ -21,17 +21,15 @@ keywords = [
classifiers = [
"Framework :: Jupyter",
"Framework :: Jupyter :: JupyterLab",
"Framework :: Jupyter :: JupyterLab :: 3",
"Framework :: Jupyter :: JupyterLab :: 4",
"Framework :: Jupyter :: JupyterLab :: Extensions",
"Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
urls = {Homepage = "https://ipython.org"}
requires-python = ">=3.8"
Expand Down Expand Up @@ -109,8 +107,6 @@ artifacts = [
[tool.black]
skip-string-normalization = true
target_version = [
"py36",
"py37",
"py38",
]
python_cell_magics = ["px"]
Expand Down Expand Up @@ -187,7 +183,7 @@ select = [
github_url = "https://github.com/jupyterhub/jupyterhub"

[tool.tbump.version]
current = "8.9.0.dev"
current = "9.0.0.dev"

# pep440 regex
regex = '''
Expand Down

0 comments on commit 6f80ae3

Please sign in to comment.