Skip to content

Commit 266b73f

Browse files
Merge pull request #1242 from RonnyPfannschmidt/fix-docs-build-remove-entangled
Remove entangled dependency from docs build
2 parents e56b78f + fb572bf commit 266b73f

File tree

6 files changed

+2
-425
lines changed

6 files changed

+2
-425
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ htmlcov/
4242
.cache
4343
.pytest_cache
4444
.mypy_cache/
45-
.entangled/
4645

4746
nosetests.xml
4847
coverage.xml

docs/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ metadata is present.
212212

213213
The recommended approach for Sphinx configurations is to use the installed package metadata:
214214

215-
``` {.python file=docs/.entangled/sphinx_conf.py}
215+
```python
216216
from importlib.metadata import version as get_version
217217
release: str = get_version("package-name")
218218
# for example take major/minor

hatch.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,4 @@ extras = ["docs"]
1515
[envs.docs.scripts]
1616
build = "mkdocs build --clean --strict"
1717
serve = "mkdocs serve --dev-addr localhost:8000"
18-
init = "mkdocs {args}"
19-
sync = ["entangled sync"]
18+
init = "mkdocs {args}"

mkdocs.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ markdown_extensions:
2424
- pymdownx.superfences
2525

2626
plugins:
27-
- entangled
2827
- search
2928
- include-markdown
3029
- mkdocstrings:

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,7 @@ toml = []
5454

5555
[dependency-groups]
5656
docs = [
57-
#"entangled-cli~=2.0",
5857
"mkdocs",
59-
"mkdocs-entangled-plugin",
6058
"mkdocs-include-markdown-plugin",
6159
"mkdocs-material",
6260
"mkdocstrings[python]",

0 commit comments

Comments
 (0)