-
Notifications
You must be signed in to change notification settings - Fork 26
docs: update theme 1.9 #121
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,6 +15,8 @@ on: | |
| jobs: | ||
| release: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: write | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
|
|
@@ -25,7 +27,9 @@ jobs: | |
| - name: Set up Python | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.10' | ||
| python-version: '3.12' | ||
| - name: Install uv | ||
| uses: astral-sh/setup-uv@v6 | ||
|
Comment on lines
+30
to
+32
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is v7 of that job already.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good catch! This PR was auto-propagated across +20 repos. We can bump to v7 in a follow-up after merging. |
||
| - name: Set up env | ||
| run: make -C docs setupenv | ||
| - name: Build docs | ||
|
|
||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,24 +1,20 @@ | ||
| [tool.poetry] | ||
| [project] | ||
| name = "cpp-driver" | ||
| description = "Scylla C/C++ Driver" | ||
| version = "0.1" | ||
| authors = ["ScyllaDB Documentation Contributors"] | ||
| package-mode = false | ||
| requires-python = ">=3.11" | ||
| dependencies = [ | ||
| "breathe>=4.35.0", | ||
| "pygments>=2.18.0", | ||
| "sphinx-scylladb-theme>=1.9.1", | ||
| "myst-parser>=5.0.0", | ||
| "sphinx-autobuild>=2025.4.8", | ||
| "sphinx>=9.0", | ||
| "sphinx-multiversion-scylla>=0.3.7", | ||
| "sphinx-sitemap>=2.9.0", | ||
| "redirects_cli>=0.1.3", | ||
| "sphinx-scylladb-markdown>=0.1.2", | ||
| ] | ||
|
|
||
| [tool.poetry.dependencies] | ||
| breathe="4.35.0" | ||
| python = "^3.10" | ||
| pygments = "^2.18.0" | ||
| redirects_cli ="^0.1.3" | ||
| sphinx-scylladb-theme = "^1.8.5" | ||
| sphinx-sitemap = "^2.6.0" | ||
| sphinx-autobuild = "^2024.4.19" | ||
| Sphinx = "^7.3.7" | ||
| sphinx-multiversion-scylla = "^0.3.1" | ||
| sphinx-scylladb-markdown = "^0.1.2" | ||
| [tool.poetry.dev-dependencies] | ||
| pytest = "5.2" | ||
|
|
||
| [build-system] | ||
| requires = ["poetry>=1.8.0"] | ||
| build-backend = "poetry.masonry.api" | ||
| [tool.uv] | ||
| package = false |
Large diffs are not rendered by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any here we have it again :( why?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are now explicitly defining the minimum required permissions per workflow. The
contents: writepermission is needed here because deploy.sh pushes the built docs to the gh-pages branch.