File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
38
38
39
39
### Other
40
40
* Improve the state of the Python type hints in ` basilisp.lang.* ` (#797 , #784 )
41
+ * Pin the ` sphinxcontrib-* ` dependencies versions to fix Read The Docs builds issue (#815 )
41
42
42
43
43
44
## [ v0.1.0b0]
Original file line number Diff line number Diff line change 1
1
sphinx ~= 4.4.0
2
2
sphinx-rtd-theme == 1.3.0
3
+ # The Read the Docs CI build is facing an issue where it doesn't
4
+ # automatically identify the correct dependencies versions compatible
5
+ # with Sphinx 4.4.0. As a result, we need to explicitly specify these
6
+ # versions.
7
+ sphinxcontrib-applehelp == 1.0.4
8
+ sphinxcontrib-devhelp == 1.0.2
9
+ sphinxcontrib-htmlhelp == 2.0.1
10
+ sphinxcontrib-qthelp == 1.0.3
11
+ sphinxcontrib-serializinghtml == 1.1.5
Original file line number Diff line number Diff line change @@ -50,8 +50,11 @@ isort = "*"
50
50
pygments = " *"
51
51
pytest = " ^7.0.0"
52
52
pytest-pycharm = " *"
53
- sphinx = " *"
54
- sphinx-rtd-theme = " *"
53
+ # Ensure the Sphinx version remains synchronized with
54
+ # docs/requirements.txt to maintain consistent output during both
55
+ # development and publishing on Read The Docs.
56
+ sphinx = " ~=4.4.0"
57
+ sphinx-rtd-theme = " 1.3.0"
55
58
tox = " *"
56
59
57
60
[tool .poetry .extras ]
You can’t perform that action at this time.
0 commit comments