Skip to content

Commit 07a2368

Browse files
📌 fix rtd (#886)
📌 fix rtd (#886)
1 parent b95348f commit 07a2368

File tree

4 files changed

+19
-10
lines changed

4 files changed

+19
-10
lines changed

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ mkdocs:
1818
python:
1919
install:
2020
- method: pip
21-
path: ".[dev]"
21+
path: ".[docs]"

docs/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ It's very handy for interactive development and data exploration.
2121
!!! danger "Don't use `dbx execute` for production workloads"
2222

2323
It's not recommended to use `dbx execute` for production workloads. Run your workflows on the dedicated job clusters instead.
24-
Reasoning is described in detail in the [concepts section](../concepts/cluster_types).
24+
Reasoning is described in detail in the [concepts section](./concepts/cluster_types).
2525

2626
In contrast to the `dbx execute`, `dbx launch` launches your workflow on a [dedicated job cluster](./concepts/cluster_types.md#job-clusters). This is a recommended way for CI pipelines, automated launches etc.
2727

mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ markdown_extensions:
6363
- toc:
6464
permalink: "#"
6565
- pymdownx.emoji:
66-
emoji_index: !!python/name:materialx.emoji.twemoji
67-
emoji_generator: !!python/name:materialx.emoji.to_svg
66+
emoji_index: !!python/name:material.extensions.emoji.twemoji
67+
emoji_generator: !!python/name:material.extensions.emoji.to_svg
6868
- admonition
6969
- pymdownx.details
7070
- pymdownx.inlinehilite

pyproject.toml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,22 @@ dependencies = [
4848

4949
[project.optional-dependencies]
5050
aws = ["boto3>=1.26.13,<2"]
51-
azure = [
52-
"azure-identity>=1.12.0,<2.0.0",
53-
"azure-storage-blob>=12.14.1,<13.0.0"
54-
]
51+
azure = ["azure-identity>=1.12.0,<2.0.0", "azure-storage-blob>=12.14.1,<13.0.0"]
5552
gcp = ["google-cloud-storage>=2.6.0,<3.0.0"]
5653

54+
docs = [
55+
"MarkupSafe>=2.1.1,<3.0.0",
56+
"mccabe>=0.7.0,<1.0.0",
57+
"mdx-include>=1.4.1,<2.0.0",
58+
"mkdocs-click>=0.8.0,<1.0",
59+
"mkdocs-git-revision-date-localized-plugin>=1.1.0,<=2.0",
60+
"mkdocs-glightbox>=0.2.1,<1.0",
61+
"mkdocs-markdownextradata-plugin>=0.1.7,<0.3.0",
62+
"mkdocs-material>=9.6.12,<10.0.0",
63+
"mkdocs>=1.1.2,<2.0.0",
64+
]
65+
66+
5767
[tool.hatch.envs.default]
5868
python = "3.8"
5969
dependencies = [
@@ -65,7 +75,7 @@ dependencies = [
6575
"mkdocs-git-revision-date-localized-plugin>=1.1.0,<=2.0",
6676
"mkdocs-glightbox>=0.2.1,<1.0",
6777
"mkdocs-markdownextradata-plugin>=0.1.7,<0.3.0",
68-
"mkdocs-material>=9.0.8,<10.0.0",
78+
"mkdocs-material>=9.6.12,<10.0.0",
6979
"mkdocs>=1.1.2,<2.0.0",
7080
"poetry>=1.2.0",
7181
"pre-commit>=2.20.0,<4.0.0",
@@ -114,4 +124,3 @@ source = "vcs"
114124

115125
[tool.hatch.build.hooks.vcs]
116126
version-file = "src/dbx/_version.py"
117-

0 commit comments

Comments
 (0)