Skip to content

Commit c7f763c

Browse files
authored
Merge pull request #295 from lincc-frameworks/issue/294/sphinx
Remove sphinx pins
2 parents 10d7c98 + 1c82f3a commit c7f763c

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

docs/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
sphinx>=6.1.3
2-
sphinx-rtd-theme>=1.2.0
1+
sphinx
2+
sphinx-rtd-theme

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ dynamic = ["version"]
1616

1717
dependencies = [
1818
"setuptools_scm",
19-
"sphinx>=6.1.3", # Used to automatically generate documentation
20-
"sphinx-rtd-theme>=1.2.0", # Used to render documentation
19+
"sphinx", # Used to automatically generate documentation
20+
"sphinx-rtd-theme", # Used to render documentation
2121
]
2222

2323
[build-system]

python-project-template/pyproject.toml.jinja

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ dev = [
3131
"pytest-cov", # Used to report total code coverage
3232
"pre-commit", # Used to run checks before finalizing a git commit
3333
{%- if include_docs %}
34-
"sphinx==6.1.3", # Used to automatically generate documentation
35-
"sphinx-rtd-theme==1.2.0", # Used to render documentation
36-
"sphinx-autoapi==2.0.1", # Used to automatically generate api documentation
34+
"sphinx", # Used to automatically generate documentation
35+
"sphinx-rtd-theme", # Used to render documentation
36+
"sphinx-autoapi", # Used to automatically generate api documentation
3737
{%- endif %}
3838
{%- if preferred_linter == 'pylint' %}
3939
"pylint", # Used for static linting of files

python-project-template/{% if include_docs %}docs{% endif %}/requirements.txt.jinja

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
sphinx==6.1.3
2-
sphinx-rtd-theme==1.2.0
3-
sphinx-autoapi==2.0.1
1+
sphinx
2+
sphinx-rtd-theme
3+
sphinx-autoapi
44
{%- if include_notebooks %}
55
nbsphinx
66
ipython

0 commit comments

Comments
 (0)