Skip to content

Commit abc66f1

Browse files
authored
Update Pyproject metadata (#414)
* Update Pyproject metadata `License :: *` are deprecated, and Funding is not via Numfocus. * move lint test
1 parent 3800504 commit abc66f1

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.github/workflows/test.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@ jobs:
4141
steps:
4242
- uses: actions/checkout@v4
4343
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
44-
- name: Lint
45-
run: |
46-
hatch run typing:test
4744
- name: Test
4845
run: |
4946
hatch run cov:test
@@ -116,6 +113,7 @@ jobs:
116113
run: |
117114
hatch run typing:test
118115
hatch run lint:build
116+
hatch run typing:test
119117
pipx run interrogate -v .
120118
pipx run doc8 --max-line-length=200
121119

jupyter_core/paths.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def jupyter_data_dir() -> str:
174174

175175
if sys.platform == "darwin":
176176
return str(Path(home, "Library", "Jupyter"))
177-
if sys.platform == "win32": # type: ignore[unreachable]
177+
if sys.platform == "win32":
178178
appdata = os.environ.get("APPDATA", None)
179179
if appdata:
180180
return str(Path(appdata, "jupyter").resolve())

pyproject.toml

-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ classifiers = [
1111
"Intended Audience :: Developers",
1212
"Intended Audience :: System Administrators",
1313
"Intended Audience :: Science/Research",
14-
"License :: OSI Approved :: BSD License",
1514
"Programming Language :: Python",
1615
"Programming Language :: Python :: 3"
1716
]
@@ -34,7 +33,6 @@ content-type = "text/plain"
3433
[project.urls]
3534
Homepage = "https://jupyter.org"
3635
Documentation = "https://jupyter-core.readthedocs.io/"
37-
Funding = "https://numfocus.org/"
3836
Source = "https://github.com/jupyter/jupyter_core"
3937
Tracker = "https://github.com/jupyter/jupyter_core/issues"
4038

0 commit comments

Comments
 (0)