Skip to content

Commit

Permalink
Merge pull request #114 from schireson/dc/fix-docs
Browse files Browse the repository at this point in the history
fix: Bump all the docs dependencies.
  • Loading branch information
DanCardin authored Feb 20, 2024
2 parents 06a55d2 + cb36920 commit 202264a
Show file tree
Hide file tree
Showing 3 changed files with 100 additions and 98 deletions.
182 changes: 92 additions & 90 deletions docs/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions docs/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ authors = [
[tool.poetry.dependencies]
python = "^3.9"

furo = "^2022.4.7"
furo = "^2024.1.29"
linkify-it-py = "*"
myst-parser = {version = "^0.17.2", extras = ["linkify"]}
sphinx = "^4.5.0"
sphinx-autoapi = "^1.8.4"
sphinx-autobuild = "^2021.3.14"
sphinx-autodoc-typehints = "^1.18.1"
myst-parser = {version = "^2.0.0", extras = ["linkify"]}
sphinx = "~7.1.2"
sphinx-autoapi = "^3.0.0"
sphinx-autobuild = "^2024.2.4"
sphinx-autodoc-typehints = "^2.0.0"
sphinx-copybutton = "*"
sphinx-pyproject = "~0.3.0"

Expand Down
4 changes: 2 additions & 2 deletions docs/source/config/default_and_file_types.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ url = "postgresql://postgres:postgres@localhost:5432/postgres"
[[backup.tables]]
name = "public.product"
query = "select * from {table} where store_id = 4"
location = s3://my-s3-bucket/databudgie/public.product
location = "s3://my-s3-bucket/databudgie/public.product"

[backup]
url = "postgresql://postgres:postgres@localhost:5432/postgres"

[[restore.tables]]
name = "public.product"
query = "select * from {table} where store_id = 4"
location = s3://my-s3-bucket/databudgie/public.product
location = "s3://my-s3-bucket/databudgie/public.product"
```

0 comments on commit 202264a

Please sign in to comment.