Skip to content

Commit 75e0e37

Browse files
authored
Merge branch 'jupyter-server:main' into workflows-backend
2 parents ee9e067 + 1af9903 commit 75e0e37

File tree

7 files changed

+34
-15
lines changed

7 files changed

+34
-15
lines changed

.github/workflows/build.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v4
2020

2121
- name: Base Setup
2222
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
@@ -58,7 +58,7 @@ jobs:
5858
pip uninstall -y "jupyter_scheduler" jupyterlab
5959
6060
- name: Upload extension packages
61-
uses: actions/upload-artifact@v2
61+
uses: actions/upload-artifact@v4
6262
with:
6363
name: extension-artifacts
6464
path: dist/jupyter_scheduler*
@@ -70,13 +70,13 @@ jobs:
7070

7171
steps:
7272
- name: Checkout
73-
uses: actions/checkout@v2
73+
uses: actions/checkout@v4
7474
- name: Install Python
75-
uses: actions/setup-python@v2
75+
uses: actions/setup-python@v4
7676
with:
7777
python-version: '3.9'
7878
architecture: 'x64'
79-
- uses: actions/download-artifact@v2
79+
- uses: actions/download-artifact@v4
8080
with:
8181
name: extension-artifacts
8282
- name: Install and Test

.github/workflows/check-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
check_release:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v4
1919
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
2020
- name: Check Release
2121
uses: jupyter-server/jupyter_releaser/.github/actions/check-release@v2
2222
with:
2323
token: ${{ secrets.GITHUB_TOKEN }}
2424
- name: Upload Distributions
25-
uses: actions/upload-artifact@v2
25+
uses: actions/upload-artifact@v4
2626
with:
2727
name: jupyter-scheduler-releaser-dist-${{ github.run_number }}
2828
path: .jupyter_releaser_checkout/dist

.github/workflows/e2e-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v4
2424

2525
- name: Base Setup
2626
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
@@ -65,7 +65,7 @@ jobs:
6565

6666
- name: Upload Playwright Test report
6767
if: always()
68-
uses: actions/upload-artifact@v2
68+
uses: actions/upload-artifact@v4
6969
with:
7070
name: jupyter_scheduler-playwright-tests-linux
7171
path: |

CHANGELOG.md

+20-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
22

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

5+
## 2.9.0
6+
7+
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.8.0...1f431cfa410c98868ff655c2f84986a10b91f4dc))
8+
9+
### Enhancements made
10+
11+
- Add support for Python 3.12, update versions of github actions [#548](https://github.com/jupyter-server/jupyter-scheduler/pull/548) ([@andrii-i](https://github.com/andrii-i))
12+
13+
### Maintenance and upkeep improvements
14+
15+
- Add support for Python 3.12, update versions of github actions [#548](https://github.com/jupyter-server/jupyter-scheduler/pull/548) ([@andrii-i](https://github.com/andrii-i))
16+
17+
### Contributors to this release
18+
19+
([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter-scheduler/graphs/contributors?from=2024-08-29&to=2024-09-18&type=c))
20+
21+
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2024-08-29..2024-09-18&type=Issues)
22+
23+
<!-- <END NEW CHANGELOG ENTRY> -->
24+
525
## 2.8.0
626

727
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.7.1...bfb84b632f375426529fde1226042651025a85a2))
@@ -24,8 +44,6 @@
2444

2545
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2024-06-03..2024-08-29&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Akrassowski+updated%3A2024-06-03..2024-08-29&type=Issues) | [@srdas](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Asrdas+updated%3A2024-06-03..2024-08-29&type=Issues)
2646

27-
<!-- <END NEW CHANGELOG ENTRY> -->
28-
2947
## 2.7.1
3048

3149
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.7.0...8b13516cb9a2ad804b8e866e80307b1428ec089a))

jupyter_scheduler/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33

44
__all__ = ["__version__"]
55

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

package.json

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

pyproject.toml

+3-2
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.8.0"
7+
version = "2.9.0"
88
description = "A JupyterLab extension for running notebook jobs"
99
readme = "README.md"
1010
license = { file = "LICENSE" }
@@ -27,6 +27,7 @@ classifiers = [
2727
"Programming Language :: Python :: 3.9",
2828
"Programming Language :: Python :: 3.10",
2929
"Programming Language :: Python :: 3.11",
30+
"Programming Language :: Python :: 3.12",
3031
]
3132
dependencies = [
3233
"jupyter_server>=1.6,<3",
@@ -93,7 +94,7 @@ source_dir = "src"
9394
build_dir = "jupyter_scheduler/labextension"
9495

9596
[tool.tbump.version]
96-
current = "2.8.0"
97+
current = "2.9.0"
9798
regex = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)((?P<channel>a|b|rc|.dev)(?P<release>\\d+))?"
9899

99100
[[tool.tbump.file]]

0 commit comments

Comments
 (0)