doc-zero 0.2.0__tar.gz → 0.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {doc_zero-0.2.0 → doc_zero-0.2.1}/PKG-INFO +1 -1
- {doc_zero-0.2.0 → doc_zero-0.2.1}/doc0/pyproject.py +1 -1
- {doc_zero-0.2.0 → doc_zero-0.2.1}/pyproject.toml +2 -2
- {doc_zero-0.2.0 → doc_zero-0.2.1}/pyproject.toml.orig +2 -2
- {doc_zero-0.2.0 → doc_zero-0.2.1}/README.md +0 -0
- {doc_zero-0.2.0 → doc_zero-0.2.1}/doc0/__init__.py +0 -0
- {doc_zero-0.2.0 → doc_zero-0.2.1}/doc0/__main__.py +0 -0
- {doc_zero-0.2.0 → doc_zero-0.2.1}/doc0/base.py +0 -0
- {doc_zero-0.2.0 → doc_zero-0.2.1}/doc0/cli.py +0 -0
- {doc_zero-0.2.0 → doc_zero-0.2.1}/doc0/exports.py +0 -0
- {doc_zero-0.2.0 → doc_zero-0.2.1}/doc0/module.py +0 -0
- {doc_zero-0.2.0 → doc_zero-0.2.1}/doc0/py.typed +0 -0
- {doc_zero-0.2.0 → doc_zero-0.2.1}/doc0/util.py +0 -0
|
@@ -130,7 +130,7 @@ class PyProject:
|
|
|
130
130
|
return package_dir.is_dir() and (package_dir / "__init__.py").exists()
|
|
131
131
|
|
|
132
132
|
def _find_uv_root_modules(self) -> Iterable[ModuleSpec]:
|
|
133
|
-
uv_conf = self.get("tool.uv.build-backend", type=dict)
|
|
133
|
+
uv_conf = self.get("tool.uv.build-backend", type=dict, default={})
|
|
134
134
|
root = self.root / uv_conf.get("module-root", "")
|
|
135
135
|
name = uv_conf.get("module-name")
|
|
136
136
|
if name is None:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "doc-zero"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.1"
|
|
4
4
|
description = "Zero-configuration documentation generator for Python."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.13"
|
|
@@ -69,7 +69,7 @@ release = '''
|
|
|
69
69
|
&& uv run task test \
|
|
70
70
|
&& uv run task docs \
|
|
71
71
|
&& uv run task build \
|
|
72
|
-
&& git add . && git commit -m "Release $(uv version)" && git tag "v$(uv version --short)"
|
|
72
|
+
&& git add . && git commit -m "Release $(uv version)" && git tag "v$(uv version --short)" \
|
|
73
73
|
&& git push && git push --tags
|
|
74
74
|
'''
|
|
75
75
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "doc-zero"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.1"
|
|
4
4
|
description = "Zero-configuration documentation generator for Python."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
@@ -72,7 +72,7 @@ release = """
|
|
|
72
72
|
&& uv run task test \\
|
|
73
73
|
&& uv run task docs \\
|
|
74
74
|
&& uv run task build \\
|
|
75
|
-
&& git add . && git commit -m "Release $(uv version)" && git tag "v$(uv version --short)"
|
|
75
|
+
&& git add . && git commit -m "Release $(uv version)" && git tag "v$(uv version --short)" \\
|
|
76
76
|
&& git push && git push --tags
|
|
77
77
|
"""
|
|
78
78
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|