Skip to content

Commit 576fecf

Browse files
committed
Publish 2.11.0
SHA256 hashes: jupyter_scheduler-2.11.0-py3-none-any.whl: e30561b327d5736eb937e6e8da0dafb2251f90c2fe3b7eaacc8263f0dd7c1635 jupyter_scheduler-2.11.0.tar.gz: fb865effe0e86e2689ee1a02dca885500927058113abaf78ae4e9e7f914ae12b jupyterlab-scheduler-2.11.0.tgz: 5cd8996266e2f07b095dc6d792c4b8ea27ab92c834c1aca6b0b197c7394f96ac
1 parent 7de27ed commit 576fecf

File tree

4 files changed

+27
-6
lines changed

4 files changed

+27
-6
lines changed

CHANGELOG.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
22

33
<!-- <START NEW CHANGELOG ENTRY> -->
44

5+
## 2.11.0
6+
7+
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.10.0...7de27edc63b127675737388d701385a8678d3677))
8+
9+
### Enhancements made
10+
11+
- bump fsspec version excluding 2025.3.1 that was yanked on PyPI [#585](https://github.com/jupyter-server/jupyter-scheduler/pull/585) ([@andrii-i](https://github.com/andrii-i))
12+
- Updated JupyterLab Classifier to JupyterLab 4, Bump actions/cache to v3 [#576](https://github.com/jupyter-server/jupyter-scheduler/pull/576) ([@astitv-sh](https://github.com/astitv-sh))
13+
- Add support for Python 3.13 version and remove support for Python 3.7 and 3.8 versions [#575](https://github.com/jupyter-server/jupyter-scheduler/pull/575) ([@asmita-sharma1625](https://github.com/asmita-sharma1625))
14+
- Enforce path imports for mui icons, Migrate to newer eslint (v8) [#572](https://github.com/jupyter-server/jupyter-scheduler/pull/572) ([@astitv-sh](https://github.com/astitv-sh))
15+
16+
### Bugs fixed
17+
18+
- Remove "RTC" drive prefix from filepath added by jupyter-collaboration when using notebook scheduler widget [#577](https://github.com/jupyter-server/jupyter-scheduler/pull/577) ([@asmita-sharma1625](https://github.com/asmita-sharma1625))
19+
20+
### Contributors to this release
21+
22+
([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter-scheduler/graphs/contributors?from=2024-11-13&to=2025-05-16&type=c))
23+
24+
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2024-11-13..2025-05-16&type=Issues) | [@asmita-sharma1625](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aasmita-sharma1625+updated%3A2024-11-13..2025-05-16&type=Issues) | [@astitv-sh](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aastitv-sh+updated%3A2024-11-13..2025-05-16&type=Issues)
25+
26+
<!-- <END NEW CHANGELOG ENTRY> -->
27+
528
## 2.10.0
629

730
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.9.0...524854685da5dce8b3030b3fd15e36f237fb021c))
@@ -16,8 +39,6 @@
1639

1740
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2024-09-18..2024-11-13&type=Issues)
1841

19-
<!-- <END NEW CHANGELOG ENTRY> -->
20-
2142
## 2.9.0
2243

2344
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.8.0...1f431cfa410c98868ff655c2f84986a10b91f4dc))

jupyter_scheduler/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33

44
__all__ = ["__version__"]
55

6-
version_info = (2, 10, 0, "", "")
6+
version_info = (2, 11, 0, "", "")
77
__version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:])

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyterlab/scheduler",
3-
"version": "2.10.0",
3+
"version": "2.11.0",
44
"description": "A JupyterLab extension for running notebook jobs",
55
"keywords": [
66
"jupyter",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "jupyter_scheduler"
7-
version = "2.10.0"
7+
version = "2.11.0"
88
description = "A JupyterLab extension for running notebook jobs"
99
readme = "README.md"
1010
license = { file = "LICENSE" }
@@ -93,7 +93,7 @@ source_dir = "src"
9393
build_dir = "jupyter_scheduler/labextension"
9494

9595
[tool.tbump.version]
96-
current = "2.10.0"
96+
current = "2.11.0"
9797
regex = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)((?P<channel>a|b|rc|.dev)(?P<release>\\d+))?"
9898

9999
[[tool.tbump.file]]

0 commit comments

Comments
 (0)