Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 2
updates:
- package-ecosystem: "pip"
- package-ecosystem: "uv"
directory: "/docs"
schedule:
interval: "daily"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
contents: read # to read private repo
contents: write # to read private repo

# Deploy to the github-pages environment
environment:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/docs-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:
- ".github/workflows/docs-pr.yaml"
workflow_dispatch:

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
Expand Down
26 changes: 14 additions & 12 deletions docs/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
[project]
name = "cpp-rs-driver-docs"
name = "sphinx-docs"
description = "ScyllaDB Documentation"
version = "0.1.0"
description = "ScyllaDB CPP RS Driver Documentation"
authors = [{ name = "ScyllaDB Documentation Contributors" }]
requires-python = ">=3.10"
requires-python = ">=3.12"
dependencies = [
"pygments>=2.18.0",
"sphinx-scylladb-theme>=1.8.10",
"myst-parser>=3.0.1",
"sphinx-autobuild>=2024.4.19",
"sphinx>=7.3.7",
"sphinx-multiversion-scylla>=0.3.4",
"sphinx-sitemap>=2.6.0",
"redirects-cli>=0.1.3",
"breathe==4.35.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",
"breathe>=4.35.0",
"sphinx-scylladb-markdown>=0.1.2",
]

[tool.uv]
package = false
Loading
Loading