File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 63
63
steps :
64
64
- uses : actions/checkout@v3
65
65
- uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
66
+ - run : |
67
+ # pandoc is not up to date in the ubuntu repos, so we install directly
68
+ wget https://github.com/jgm/pandoc/releases/download/2.14.2/pandoc-2.14.2-1-amd64.deb && sudo dpkg -i pandoc-2.14.2-1-amd64.deb
66
69
- run : hatch run docs:build
67
70
68
71
test_minimum_versions :
73
76
- uses : actions/checkout@v3
74
77
- uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
75
78
with :
76
- python_version : " 3.8 "
79
+ python_version : " 3.7 "
77
80
- uses : jupyterlab/maintainer-tools/.github/actions/install-minimums@v1
78
81
with :
79
82
only_create_file : 1
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ classifiers = [
31
31
]
32
32
dependencies = [
33
33
" jupyter_server>=1.16.0,<2" ,
34
+ " importlib-resources>=1.4;python_version<\" 3.9\" " ,
34
35
" jupyterlab>=4.0.0a30,<5" ,
35
36
" jupyterlab_server>=2.13,<3" ,
36
37
" notebook_shim>=0.1,<0.2" ,
Original file line number Diff line number Diff line change 4
4
import os .path as osp
5
5
import pathlib
6
6
import shutil
7
- from importlib .resources import files
7
+
8
+ try :
9
+ from importlib .resources import files
10
+ except ImportError :
11
+ from importlib_resources import files
8
12
9
13
import pytest
10
14
You can’t perform that action at this time.
0 commit comments