Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Misc/readthedocs build fix; drop sphinx dep #1177

Merged
merged 1 commit into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
version: 2

build:
os: ubuntu-22.04
os: ubuntu-lts-latest
tools:
python: "3.7"
python: "3"
jobs:
post_checkout:
- git fetch --unshallow || true
Expand Down
4 changes: 2 additions & 2 deletions doc/en/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ def generate_news():


def setup(app):
app.add_stylesheet("icon.css")
app.add_stylesheet("news.css")
app.add_css_file("icon.css")
app.add_css_file("news.css")
generate_news()
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@
"Topic :: Software Development :: Testing :: Unit"
]
dependencies = [
"sphinx<2",
"sphinx_rtd_theme",
"setuptools",
"pytest",
"pytest-mock",
Expand Down
5 changes: 5 additions & 0 deletions requirements-rtd.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
sphinx
sphinx-click
sphinx-rtd-theme
-r ./requirements.txt
./releaseherald
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ confluent-kafka
plotly
pandas
numpy
sphinx-click
doit
Loading