Skip to content

Commit 6f80ae3

Browse files
authored
Merge pull request #910 from minrk/changelog-9
changelog, metadata updates for 9.0
2 parents 0a9ba8e + b016d89 commit 6f80ae3

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

docs/source/changelog.md

+12
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@
44

55
Changes in IPython Parallel
66

7+
## 9.0 - 2024-11
8+
9+
IPython Parallel 9 is a small major release.
10+
11+
The biggest new feature highlight is Windows support for SSHLauncher (thanks [@ottointhesky](https://github.com/ottointhesky)!)
12+
13+
Other changes:
14+
15+
- Compatibility fixes for upcoming ipykernel 7 (ipykernel 6.9.1 is now required)
16+
- JupyterLab extension dependencies are updated from 3.x to JupyterLab 4.3
17+
- Use `importlib.metadata` instead of deprecated `entrypoints` (no effect for users)
18+
719
## 8.8
820

921
### 8.8.0 - 2024-04-02

ipyparallel/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import re
22

3-
__version__ = "8.9.0.dev"
3+
__version__ = "9.0.0.dev"
44

55
# matches tbump regex in pyproject.toml
66
_version_regex = re.compile(

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipyparallel-labextension",
3-
"version": "8.9.0",
3+
"version": "9.0.0",
44
"private": true,
55
"description": "A JupyterLab extension for IPython Parallel.",
66
"keywords": [

pyproject.toml

+3-7
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "hatchling.build"
77

88
[project]
99
name = "ipyparallel"
10-
version = "8.9.0.dev"
10+
version = "9.0.0.dev"
1111
authors = [{name = "IPython Development Team", email = "[email protected]"}]
1212
license = {file = "COPYING.md"}
1313
readme = "README.md"
@@ -21,17 +21,15 @@ keywords = [
2121
classifiers = [
2222
"Framework :: Jupyter",
2323
"Framework :: Jupyter :: JupyterLab",
24-
"Framework :: Jupyter :: JupyterLab :: 3",
24+
"Framework :: Jupyter :: JupyterLab :: 4",
2525
"Framework :: Jupyter :: JupyterLab :: Extensions",
2626
"Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt",
2727
"Intended Audience :: Developers",
2828
"Intended Audience :: System Administrators",
2929
"Intended Audience :: Science/Research",
3030
"License :: OSI Approved :: BSD License",
3131
"Programming Language :: Python",
32-
"Programming Language :: Python :: 3.7",
3332
"Programming Language :: Python :: 3.8",
34-
"Programming Language :: Python :: 3.9",
3533
]
3634
urls = {Homepage = "https://ipython.org"}
3735
requires-python = ">=3.8"
@@ -109,8 +107,6 @@ artifacts = [
109107
[tool.black]
110108
skip-string-normalization = true
111109
target_version = [
112-
"py36",
113-
"py37",
114110
"py38",
115111
]
116112
python_cell_magics = ["px"]
@@ -187,7 +183,7 @@ select = [
187183
github_url = "https://github.com/jupyterhub/jupyterhub"
188184

189185
[tool.tbump.version]
190-
current = "8.9.0.dev"
186+
current = "9.0.0.dev"
191187

192188
# pep440 regex
193189
regex = '''

0 commit comments

Comments
 (0)