Skip to content

Commit

Permalink
deps: Make Sphinx optional
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Northey <ryan@synca.io>
  • Loading branch information
AA-Turner authored and phlax committed Aug 24, 2023
1 parent 5c62ad4 commit 9790297
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Release 1.1.9 (2023-08-20)
==========================

* Serialise context["script_files"] and context["css_files"] as their filenames
on Sphinx 7.2.0.

Release 1.1.8 (2023-08-14)
==========================

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ classifiers = [
"Topic :: Text Processing",
"Topic :: Utilities",
]
dependencies = [
"Sphinx>=5",
]
dynamic = ["version"]

[project.optional-dependencies]
Expand All @@ -54,6 +51,9 @@ lint = [
"mypy",
"docutils-stubs",
]
standalone = [
"sphinx > 5",
]

[[project.authors]]
name = "Georg Brandl"
Expand Down
4 changes: 2 additions & 2 deletions sphinxcontrib/serializinghtml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

from sphinxcontrib.serializinghtml import jsonimpl

__version__ = '1.1.8'
__version_info__ = (1, 1, 8)
__version__ = '1.1.9'
__version_info__ = (1, 1, 9)

package_dir = path.abspath(path.dirname(__file__))

Expand Down

0 comments on commit 9790297

Please sign in to comment.