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 fbe424e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install .[test]
python -m pip install .[standalone]
- name: Test with pytest
run: python -m pytest -vv --durations 25
Expand Down
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 fbe424e

Please sign in to comment.