Commit abc66f1 1 parent 3800504 commit abc66f1 Copy full SHA for abc66f1
File tree 3 files changed +2
-6
lines changed
3 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 41
41
steps :
42
42
- uses : actions/checkout@v4
43
43
- uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
44
- - name : Lint
45
- run : |
46
- hatch run typing:test
47
44
- name : Test
48
45
run : |
49
46
hatch run cov:test
@@ -116,6 +113,7 @@ jobs:
116
113
run : |
117
114
hatch run typing:test
118
115
hatch run lint:build
116
+ hatch run typing:test
119
117
pipx run interrogate -v .
120
118
pipx run doc8 --max-line-length=200
121
119
Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ def jupyter_data_dir() -> str:
174
174
175
175
if sys .platform == "darwin" :
176
176
return str (Path (home , "Library" , "Jupyter" ))
177
- if sys .platform == "win32" : # type: ignore[unreachable]
177
+ if sys .platform == "win32" :
178
178
appdata = os .environ .get ("APPDATA" , None )
179
179
if appdata :
180
180
return str (Path (appdata , "jupyter" ).resolve ())
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ classifiers = [
11
11
" Intended Audience :: Developers" ,
12
12
" Intended Audience :: System Administrators" ,
13
13
" Intended Audience :: Science/Research" ,
14
- " License :: OSI Approved :: BSD License" ,
15
14
" Programming Language :: Python" ,
16
15
" Programming Language :: Python :: 3"
17
16
]
@@ -34,7 +33,6 @@ content-type = "text/plain"
34
33
[project .urls ]
35
34
Homepage = " https://jupyter.org"
36
35
Documentation = " https://jupyter-core.readthedocs.io/"
37
- Funding = " https://numfocus.org/"
38
36
Source = " https://github.com/jupyter/jupyter_core"
39
37
Tracker = " https://github.com/jupyter/jupyter_core/issues"
40
38
You can’t perform that action at this time.
0 commit comments