File tree 4 files changed +12
-5
lines changed
sphinxcontrib/serializinghtml
4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 45
45
run : |
46
46
python -m pip install --upgrade pip
47
47
python -m pip install .[test]
48
+ python -m pip install .[standalone]
48
49
49
50
- name : Test with pytest
50
51
run : python -m pytest -vv --durations 25
Original file line number Diff line number Diff line change
1
+ Release 1.1.9 (2023-08-20)
2
+ ==========================
3
+
4
+ * Serialise context["script_files"] and context["css_files"] as their filenames
5
+ on Sphinx 7.2.0.
6
+
1
7
Release 1.1.8 (2023-08-14)
2
8
==========================
3
9
Original file line number Diff line number Diff line change @@ -40,9 +40,6 @@ classifiers = [
40
40
" Topic :: Text Processing" ,
41
41
" Topic :: Utilities" ,
42
42
]
43
- dependencies = [
44
- " Sphinx>=5" ,
45
- ]
46
43
dynamic = [" version" ]
47
44
48
45
[project .optional-dependencies ]
@@ -54,6 +51,9 @@ lint = [
54
51
" mypy" ,
55
52
" docutils-stubs" ,
56
53
]
54
+ standalone = [
55
+ " sphinx > 5" ,
56
+ ]
57
57
58
58
[[project .authors ]]
59
59
name = " Georg Brandl"
Original file line number Diff line number Diff line change 13
13
14
14
from sphinxcontrib .serializinghtml import jsonimpl
15
15
16
- __version__ = '1.1.8 '
17
- __version_info__ = (1 , 1 , 8 )
16
+ __version__ = '1.1.9 '
17
+ __version_info__ = (1 , 1 , 9 )
18
18
19
19
package_dir = path .abspath (path .dirname (__file__ ))
20
20
You can’t perform that action at this time.
0 commit comments