Skip to content

Commit 698e9fc

Browse files
authored
Merge pull request #34 from Carreau/source-url
2 parents cc9bef0 + b59b2f3 commit 698e9fc

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.github/workflows/check-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
token: ${{ secrets.GITHUB_TOKEN }}
2323
- name: Upload Distributions
24-
uses: actions/upload-artifact@v2
24+
uses: actions/upload-artifact@v4
2525
with:
2626
name: jupyter-resource-usage-releaser-dist-${{ github.run_number }}
2727
path: .jupyter_releaser_checkout/dist

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os: [ubuntu, macos, windows]
18-
python-version: ["3.7", "3.10"]
18+
python-version: ["3.9", "3.13"]
1919

2020
steps:
2121
- name: Checkout

notebook_shim/tests/test_extension.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11

2-
import io
3-
import logging
42
import pytest
53

6-
from traitlets import default
7-
from .mockextension import MockExtensionApp
84
from notebook_shim import shim
95

106

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ dependencies = [
3131
"jupyter_server>=1.8,<3"
3232
]
3333

34+
[project.urls]
35+
Homepage = "https://jupyter.org"
36+
Source = "https://github.com/jupyter/notebook_shim"
37+
3438
[tool.hatch.build.targets.wheel.shared-data]
3539
"jupyter_server_config.d/notebook_shim.json" = "etc/jupyter/jupyter_server_config.d/notebook_shim.json"
3640

@@ -44,8 +48,6 @@ test = [
4448

4549

4650

47-
48-
4951
[tool.hatch.version]
5052
path = "notebook_shim/_version.py"
5153

@@ -80,6 +82,7 @@ default = ""
8082
ignore = ["tbump.toml", ".*", "conftest.py"]
8183

8284
[tool.pytest.ini_options]
85+
minversion = "7"
8386
norecursedirs = ["confs"]
8487
testpaths = [
8588
"notebook_shim/tests"

0 commit comments

Comments
 (0)