pipersynth 0.1.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.
Files changed (106) hide show
  1. pipersynth-0.1.1/.codecrate.toml +24 -0
  2. pipersynth-0.1.1/.github/workflows/codecov.yml +27 -0
  3. pipersynth-0.1.1/.github/workflows/pre-commit.yml +31 -0
  4. pipersynth-0.1.1/.github/workflows/python-publish.yml +88 -0
  5. pipersynth-0.1.1/.github/workflows/tests.yml +27 -0
  6. pipersynth-0.1.1/.gitignore +226 -0
  7. pipersynth-0.1.1/.ledger/ledger.toml +24 -0
  8. pipersynth-0.1.1/.ledger/releaseledger/.ledger-project.toml +6 -0
  9. pipersynth-0.1.1/.ledger/releaseledger/config.toml +56 -0
  10. pipersynth-0.1.1/.ledger/releaseledger/data/.ledger-project.toml +6 -0
  11. pipersynth-0.1.1/.ledger/releaseledger/data/ledgers/main/events/events.jsonl +10 -0
  12. pipersynth-0.1.1/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/entries/entry-0001.md +25 -0
  13. pipersynth-0.1.1/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/entries/entry-0002.md +25 -0
  14. pipersynth-0.1.1/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/entries/entry-0003.md +24 -0
  15. pipersynth-0.1.1/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/entries/entry-0004.md +24 -0
  16. pipersynth-0.1.1/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/entries/entry-0005.md +25 -0
  17. pipersynth-0.1.1/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/entries/entry-0006.md +25 -0
  18. pipersynth-0.1.1/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/entries/entry-0007.md +25 -0
  19. pipersynth-0.1.1/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/entries/entry-0008.md +25 -0
  20. pipersynth-0.1.1/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/release.md +27 -0
  21. pipersynth-0.1.1/.ledger/releaseledger/write.lock +0 -0
  22. pipersynth-0.1.1/.ledger/taskledger/.ledger-project.toml +6 -0
  23. pipersynth-0.1.1/.ledger/taskledger/config.toml +7 -0
  24. pipersynth-0.1.1/.pre-commit-config.yaml +64 -0
  25. pipersynth-0.1.1/LICENSE +201 -0
  26. pipersynth-0.1.1/PKG-INFO +185 -0
  27. pipersynth-0.1.1/README.md +143 -0
  28. pipersynth-0.1.1/docs/architecture.md +44 -0
  29. pipersynth-0.1.1/docs/changelog.md +22 -0
  30. pipersynth-0.1.1/docs/performance.md +7 -0
  31. pipersynth-0.1.1/docs/providers.md +16 -0
  32. pipersynth-0.1.1/docs/troubleshooting.md +25 -0
  33. pipersynth-0.1.1/example-artefacts/.gitkeep +0 -0
  34. pipersynth-0.1.1/examples/README.md +37 -0
  35. pipersynth-0.1.1/examples/__init__.py +0 -0
  36. pipersynth-0.1.1/examples/_output.py +31 -0
  37. pipersynth-0.1.1/examples/audio_job.py +32 -0
  38. pipersynth-0.1.1/examples/basic.py +34 -0
  39. pipersynth-0.1.1/examples/contractions.py +26 -0
  40. pipersynth-0.1.1/examples/download_and_synthesize.py +32 -0
  41. pipersynth-0.1.1/examples/german.py +27 -0
  42. pipersynth-0.1.1/examples/homographs.py +28 -0
  43. pipersynth-0.1.1/examples/pauses.py +54 -0
  44. pipersynth-0.1.1/examples/pipeline.py +37 -0
  45. pipersynth-0.1.1/examples/plan_roundtrip.py +29 -0
  46. pipersynth-0.1.1/examples/pretrained_pipeline.py +32 -0
  47. pipersynth-0.1.1/examples/punctuation.py +35 -0
  48. pipersynth-0.1.1/examples/run_all.py +168 -0
  49. pipersynth-0.1.1/examples/spokenform.py +27 -0
  50. pipersynth-0.1.1/examples/ssmd.py +39 -0
  51. pipersynth-0.1.1/examples/stream.py +45 -0
  52. pipersynth-0.1.1/pipersynth/__init__.py +120 -0
  53. pipersynth-0.1.1/pipersynth/__main__.py +216 -0
  54. pipersynth-0.1.1/pipersynth/_onnxvoice.py +317 -0
  55. pipersynth-0.1.1/pipersynth/_version.py +24 -0
  56. pipersynth-0.1.1/pipersynth/asset_manager.py +222 -0
  57. pipersynth-0.1.1/pipersynth/asset_progress.py +33 -0
  58. pipersynth-0.1.1/pipersynth/assets.py +143 -0
  59. pipersynth-0.1.1/pipersynth/audio.py +84 -0
  60. pipersynth-0.1.1/pipersynth/audio_job.py +283 -0
  61. pipersynth-0.1.1/pipersynth/composition.py +114 -0
  62. pipersynth-0.1.1/pipersynth/config.py +120 -0
  63. pipersynth-0.1.1/pipersynth/convenience.py +153 -0
  64. pipersynth-0.1.1/pipersynth/diagnostics.py +51 -0
  65. pipersynth-0.1.1/pipersynth/errors.py +97 -0
  66. pipersynth-0.1.1/pipersynth/pipeline.py +616 -0
  67. pipersynth-0.1.1/pipersynth/plan_adapter.py +297 -0
  68. pipersynth-0.1.1/pipersynth/planning.py +86 -0
  69. pipersynth-0.1.1/pipersynth/preparation.py +93 -0
  70. pipersynth-0.1.1/pipersynth/protocols.py +30 -0
  71. pipersynth-0.1.1/pipersynth/py.typed +0 -0
  72. pipersynth-0.1.1/pipersynth/session.py +265 -0
  73. pipersynth-0.1.1/pipersynth/types.py +269 -0
  74. pipersynth-0.1.1/pipersynth/voice.py +479 -0
  75. pipersynth-0.1.1/pipersynth.egg-info/PKG-INFO +185 -0
  76. pipersynth-0.1.1/pipersynth.egg-info/SOURCES.txt +104 -0
  77. pipersynth-0.1.1/pipersynth.egg-info/dependency_links.txt +1 -0
  78. pipersynth-0.1.1/pipersynth.egg-info/entry_points.txt +2 -0
  79. pipersynth-0.1.1/pipersynth.egg-info/requires.txt +24 -0
  80. pipersynth-0.1.1/pipersynth.egg-info/scm_file_list.json +99 -0
  81. pipersynth-0.1.1/pipersynth.egg-info/scm_version.json +8 -0
  82. pipersynth-0.1.1/pipersynth.egg-info/top_level.txt +1 -0
  83. pipersynth-0.1.1/pyproject.toml +90 -0
  84. pipersynth-0.1.1/setup.cfg +4 -0
  85. pipersynth-0.1.1/tests/test_asset_manager.py +135 -0
  86. pipersynth-0.1.1/tests/test_asset_progress.py +7 -0
  87. pipersynth-0.1.1/tests/test_assets.py +13 -0
  88. pipersynth-0.1.1/tests/test_audio.py +54 -0
  89. pipersynth-0.1.1/tests/test_audio_job.py +158 -0
  90. pipersynth-0.1.1/tests/test_cli.py +28 -0
  91. pipersynth-0.1.1/tests/test_config.py +49 -0
  92. pipersynth-0.1.1/tests/test_convenience.py +66 -0
  93. pipersynth-0.1.1/tests/test_example_output.py +25 -0
  94. pipersynth-0.1.1/tests/test_examples_runner.py +152 -0
  95. pipersynth-0.1.1/tests/test_imports.py +48 -0
  96. pipersynth-0.1.1/tests/test_integration.py +53 -0
  97. pipersynth-0.1.1/tests/test_onnxvoice_boundary.py +153 -0
  98. pipersynth-0.1.1/tests/test_pipeline.py +100 -0
  99. pipersynth-0.1.1/tests/test_preparation.py +43 -0
  100. pipersynth-0.1.1/tests/test_pretrained_pipeline.py +65 -0
  101. pipersynth-0.1.1/tests/test_results.py +19 -0
  102. pipersynth-0.1.1/tests/test_session.py +119 -0
  103. pipersynth-0.1.1/tests/test_utterplan_integration.py +192 -0
  104. pipersynth-0.1.1/tests/test_voice.py +140 -0
  105. pipersynth-0.1.1/tests/typecheck/mypy.ini +7 -0
  106. pipersynth-0.1.1/tests/typecheck/public_api.py +139 -0
@@ -0,0 +1,24 @@
1
+ [codecrate]
2
+ output = "context_pipersynth.md"
3
+ keep_docstrings = true
4
+ dedupe = true
5
+ respect_gitignore = true
6
+ exclude = ["*/.venv/*", "context_pipersynth.*"]
7
+ include = [
8
+ "**/*.py",
9
+ "**/*.json",
10
+ "**/*.toml",
11
+ "**/*.rst",
12
+ "**/*.md",
13
+ "**/*.yaml",
14
+ "**/*.yml",
15
+ "**/py.typed",
16
+ "**/NOTICE",
17
+ "**/NOTICE.*",
18
+ "**/MANIFEST.in",
19
+ "LICENSE*",
20
+ ]
21
+ split_max_chars = 2500000
22
+ layout = "full"
23
+ profile = "portable-agent"
24
+ emit_standalone_unpacker = true
@@ -0,0 +1,27 @@
1
+ name: CodeCov
2
+ on: push
3
+ jobs:
4
+ run:
5
+ runs-on: ubuntu-latest
6
+ env:
7
+ OS: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - name: Setup Python
11
+ uses: actions/setup-python@v5
12
+ with:
13
+ python-version: "3.13"
14
+ - name: 'generate report'
15
+ run: |
16
+ pip install coverage pytest pytest-cov
17
+ pip install -e ".[cpu,dev]"
18
+ pytest --cov --junitxml=junit.xml
19
+ - name: Upload coverage to Codecov
20
+ uses: codecov/codecov-action@v5
21
+ with:
22
+ token: ${{ secrets.CODECOV_TOKEN }} # required
23
+ - name: Upload test results to Codecov
24
+ if: ${{ !cancelled() }}
25
+ uses: codecov/test-results-action@v1
26
+ with:
27
+ token: ${{ secrets.CODECOV_TOKEN }}
@@ -0,0 +1,31 @@
1
+ name: pre-commit
2
+
3
+ on:
4
+ pull_request:
5
+ push:
6
+
7
+ jobs:
8
+ pre-commit:
9
+ runs-on: ubuntu-latest
10
+
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+
14
+ - uses: actions/setup-python@v5
15
+ with:
16
+ python-version: "3.13"
17
+
18
+ - uses: actions/setup-node@v4
19
+ with:
20
+ node-version: "20"
21
+
22
+ - name: Install Python tools
23
+ run: |
24
+ python -m pip install --upgrade pip
25
+ python -m pip install "ruff==0.15.12"
26
+
27
+ - name: Install Node tools
28
+ run: |
29
+ npm install -g prettier@2.7.1 @prettier/plugin-xml@2.2.0 eslint
30
+
31
+ - uses: pre-commit/action@v3.0.1
@@ -0,0 +1,88 @@
1
+ # Build and publish a Python package when a GitHub Release is published.
2
+
3
+ name: Upload Python Package
4
+
5
+ on:
6
+ release:
7
+ types: [published]
8
+
9
+ permissions:
10
+ contents: read
11
+
12
+ jobs:
13
+ deploy:
14
+ runs-on: ubuntu-latest
15
+
16
+ steps:
17
+ - name: Check out release
18
+ uses: actions/checkout@v7
19
+
20
+ - name: Set up Python
21
+ uses: actions/setup-python@v7
22
+ with:
23
+ python-version: "3.13"
24
+
25
+ - name: Install build tooling
26
+ run: python -m pip install --upgrade pip build twine
27
+ - name: Build package
28
+ run: |
29
+ rm -rf dist
30
+ python -m build
31
+ - name: Check built distributions
32
+ run: python -m twine check dist/*
33
+ - name: Validate release artifacts
34
+ env:
35
+ RELEASE_TAG: ${{ github.event.release.tag_name }}
36
+ run: |
37
+ python - <<'PY'
38
+ import os
39
+ import re
40
+ import zipfile
41
+ from email import policy
42
+ from email.parser import Parser
43
+ from pathlib import Path
44
+ from packaging.requirements import Requirement
45
+ from packaging.version import Version
46
+
47
+ def has_minimum(requirements, name, minimum):
48
+ minimum_version = Version(minimum)
49
+ return any(
50
+ requirement.name == name
51
+ and any(
52
+ spec.operator in (">=", ">", "==")
53
+ and Version(spec.version) >= minimum_version
54
+ for spec in requirement.specifier
55
+ )
56
+ for requirement in requirements
57
+ )
58
+
59
+ tag_version = os.environ["RELEASE_TAG"].removeprefix("v")
60
+ artifacts = list(Path("dist").iterdir())
61
+ wheels = [path for path in artifacts if path.suffix == ".whl"]
62
+ sdists = [path for path in artifacts if path.name.endswith(".tar.gz")]
63
+ assert len(wheels) == 1, wheels
64
+ assert len(sdists) == 1, sdists
65
+ wheel_version = re.match(r"pipersynth-([^-]+)-", wheels[0].name).group(1)
66
+ sdist_version = re.match(r"pipersynth-([^-]+)\.tar\.gz$", sdists[0].name).group(1)
67
+ assert wheel_version == tag_version, (wheel_version, tag_version)
68
+ assert sdist_version == tag_version, (sdist_version, tag_version)
69
+
70
+ with zipfile.ZipFile(wheels[0]) as archive:
71
+ metadata_name = next(name for name in archive.namelist() if name.endswith("METADATA"))
72
+ metadata = Parser(policy=policy.default).parsestr(
73
+ archive.read(metadata_name).decode("utf-8")
74
+ )
75
+ requirements = [
76
+ Requirement(value) for value in metadata.get_all("Requires-Dist", [])
77
+ ]
78
+ assert has_minimum(requirements, "numpy", "1.23")
79
+ assert has_minimum(requirements, "utterplan", "0.1")
80
+ assert has_minimum(requirements, "onnxvoice", "0.1")
81
+ assert any(name.endswith("pipersynth/py.typed") for name in archive.namelist())
82
+ PY
83
+
84
+ - name: Publish package to PyPI
85
+ uses: pypa/gh-action-pypi-publish@v1.14.1
86
+ with:
87
+ password: ${{ secrets.PYPI_API_TOKEN }}
88
+ attestations: false
@@ -0,0 +1,27 @@
1
+ name: Run tests
2
+ on:
3
+ push:
4
+ workflow_call:
5
+ jobs:
6
+ run:
7
+ runs-on: ${{ matrix.os }}
8
+ strategy:
9
+ matrix:
10
+ os: [ubuntu-latest, windows-latest, macos-latest]
11
+ python-version: ["3.10", "3.11", "3.12", "3.13"]
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - name: Setup Python
15
+ uses: actions/setup-python@v5
16
+ with:
17
+ python-version: ${{ matrix.python-version }}
18
+ - name: Install packages
19
+ run: |
20
+ pip install pytest ruff mypy
21
+ pip install -e ".[cpu,dev]"
22
+ python -m compileall -q pipersynth tests
23
+ - name: Type-check public API
24
+ if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.13'
25
+ run: python -m mypy --config-file tests/typecheck/mypy.ini tests/typecheck/public_api.py
26
+ - name: Tests
27
+ run: pytest -m "not slow"
@@ -0,0 +1,226 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[codz]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py.cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ # Pipfile.lock
96
+
97
+ # UV
98
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ # uv.lock
102
+
103
+ # poetry
104
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
106
+ # commonly ignored for libraries.
107
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108
+ # poetry.lock
109
+ # poetry.toml
110
+
111
+ # pdm
112
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
113
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
114
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
115
+ # pdm.lock
116
+ # pdm.toml
117
+ .pdm-python
118
+ .pdm-build/
119
+
120
+ # pixi
121
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
122
+ # pixi.lock
123
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
124
+ # in the .venv directory. It is recommended not to include this directory in version control.
125
+ .pixi
126
+
127
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
128
+ __pypackages__/
129
+
130
+ # Celery stuff
131
+ celerybeat-schedule
132
+ celerybeat.pid
133
+
134
+ # Redis
135
+ *.rdb
136
+ *.aof
137
+ *.pid
138
+
139
+ # RabbitMQ
140
+ mnesia/
141
+ rabbitmq/
142
+ rabbitmq-data/
143
+
144
+ # ActiveMQ
145
+ activemq-data/
146
+
147
+ # SageMath parsed files
148
+ *.sage.py
149
+
150
+ # Environments
151
+ .env
152
+ .envrc
153
+ .venv
154
+ env/
155
+ venv/
156
+ ENV/
157
+ env.bak/
158
+ venv.bak/
159
+
160
+ # Spyder project settings
161
+ .spyderproject
162
+ .spyproject
163
+
164
+ # Rope project settings
165
+ .ropeproject
166
+
167
+ # mkdocs documentation
168
+ /site
169
+
170
+ # mypy
171
+ .mypy_cache/
172
+ .dmypy.json
173
+ dmypy.json
174
+
175
+ # Pyre type checker
176
+ .pyre/
177
+
178
+ # pytype static type analyzer
179
+ .pytype/
180
+
181
+ # Cython debug symbols
182
+ cython_debug/
183
+
184
+ # PyCharm
185
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
186
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
187
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
188
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
189
+ # .idea/
190
+
191
+ # Abstra
192
+ # Abstra is an AI-powered process automation framework.
193
+ # Ignore directories containing user credentials, local state, and settings.
194
+ # Learn more at https://abstra.io/docs
195
+ .abstra/
196
+
197
+ # Visual Studio Code
198
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
199
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
200
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
201
+ # you could uncomment the following to ignore the entire vscode folder
202
+ # .vscode/
203
+ # Temporary file for partial code execution
204
+ tempCodeRunnerFile.py
205
+
206
+ # Ruff stuff:
207
+ .ruff_cache/
208
+
209
+ # PyPI configuration file
210
+ .pypirc
211
+
212
+ # Marimo
213
+ marimo/_static/
214
+ marimo/_lsp/
215
+ __marimo__/
216
+
217
+ # Streamlit
218
+ .streamlit/secrets.toml
219
+ context_pipersynth*.*
220
+
221
+ # setuptools_scm generated version file
222
+ pipersynth/_version.py
223
+
224
+ # Generated outputs from examples.
225
+ example-artefacts/*
226
+ !example-artefacts/.gitkeep
@@ -0,0 +1,24 @@
1
+ schema_version = 3
2
+
3
+ [project]
4
+ uuid = "03f0f653-4df4-470e-af90-8eea12ab4d51"
5
+ name = "pipersynth"
6
+
7
+ [ledgers.taskledger.mounts.data]
8
+ storage = "external"
9
+ root = "../ledger"
10
+
11
+ [ledgers.taskledger.mounts.runtime]
12
+ storage = "user-data"
13
+
14
+ [ledgers.taskledger.mounts.logs]
15
+ storage = "user-data"
16
+
17
+ [ledgers.taskledger.mounts.indexes]
18
+ storage = "cache"
19
+
20
+ [ledgers.releaseledger.mounts.data]
21
+ storage = "project"
22
+
23
+ [ledgers.releaseledger.mounts.indexes]
24
+ storage = "cache"
@@ -0,0 +1,6 @@
1
+ schema_version = 1
2
+ layout_version = 3
3
+ project_uuid = "03f0f653-4df4-470e-af90-8eea12ab4d51"
4
+ tool = "releaseledger"
5
+ mount = "config"
6
+ storage = "project"
@@ -0,0 +1,56 @@
1
+ config_version = 2
2
+ # Branch-scoped release state. This block is safe to commit.
3
+ ledger_ref = "main"
4
+ ledger_parent_ref = ""
5
+ ledger_branch_guard = "off"
6
+ # Cross-ledger identity. Local record IDs stay unchanged.
7
+
8
+ [ledger]
9
+ code = "rl"
10
+ # Release defaults.
11
+
12
+ [release]
13
+ default_changelog = "CHANGELOG.md"
14
+ default_status = "planned"
15
+ allow_dirty_worktree = true
16
+ # Changelog build defaults.
17
+
18
+ [changelog]
19
+ output = "docs/changelog.md"
20
+ header = ""
21
+ body = """## {% if release.date %}[{{ release.version }}] - {{ release.date }}{% else %}[{{ release.version }}] - Unreleased{% endif %}
22
+
23
+ {% for group in groups %}
24
+ ### {{ group.title }}
25
+ {% for entry in group.entries %}
26
+ - {% if entry.breaking %}**BREAKING:** {% endif %}{{ entry.summary }}
27
+ {% endfor %}
28
+
29
+ {% endfor %}
30
+ """
31
+ footer = "<!-- generated by releaseledger -->"
32
+ trim = true
33
+ render_always = false
34
+ postprocessors = []
35
+ standard = ""
36
+ group_mode = "extended"
37
+ link_references = false
38
+ repository_url = ""
39
+ tag_prefix = "v"
40
+ compare_url_template = ""
41
+ release_url_template = ""
42
+ preamble = ""
43
+ semver = false
44
+ unreleased = true
45
+ # Git-first release evidence.
46
+
47
+ [git]
48
+ enabled = true
49
+ default_base = "previous_release_tag"
50
+ default_head = "HEAD"
51
+ previous_tag_patterns = ["v{version}", "{version}"]
52
+ include_merges = "nontrivial"
53
+ require_clean_worktree = false
54
+ max_commits = 500
55
+ max_diff_chars_per_commit = 12000
56
+ candidate_status = "draft"
@@ -0,0 +1,6 @@
1
+ schema_version = 1
2
+ layout_version = 3
3
+ project_uuid = "03f0f653-4df4-470e-af90-8eea12ab4d51"
4
+ tool = "releaseledger"
5
+ mount = "data"
6
+ storage = "project"
@@ -0,0 +1,10 @@
1
+ {"data":{"status":"planned"},"event":"release.created","event_id":"event-0001","record_revisions":{"release:v0.1.0":1},"release_version":"v0.1.0","schema_version":2}
2
+ {"data":{"kind":"added","status":"accepted"},"entry_id":"entry-0001","event":"entry.added","event_id":"event-0002","record_revisions":{"entry:v0.1.0/entry-0001":1,"release:v0.1.0":2},"release_version":"v0.1.0","schema_version":2}
3
+ {"data":{"kind":"added","status":"accepted"},"entry_id":"entry-0002","event":"entry.added","event_id":"event-0003","record_revisions":{"entry:v0.1.0/entry-0002":1,"release:v0.1.0":3},"release_version":"v0.1.0","schema_version":2}
4
+ {"data":{"kind":"added","status":"accepted"},"entry_id":"entry-0003","event":"entry.added","event_id":"event-0004","record_revisions":{"entry:v0.1.0/entry-0003":1,"release:v0.1.0":4},"release_version":"v0.1.0","schema_version":2}
5
+ {"data":{"kind":"added","status":"accepted"},"entry_id":"entry-0004","event":"entry.added","event_id":"event-0005","record_revisions":{"entry:v0.1.0/entry-0004":1,"release:v0.1.0":5},"release_version":"v0.1.0","schema_version":2}
6
+ {"data":{"kind":"changed","status":"accepted"},"entry_id":"entry-0005","event":"entry.added","event_id":"event-0006","record_revisions":{"entry:v0.1.0/entry-0005":1,"release:v0.1.0":6},"release_version":"v0.1.0","schema_version":2}
7
+ {"data":{"kind":"changed","status":"accepted"},"entry_id":"entry-0006","event":"entry.added","event_id":"event-0007","record_revisions":{"entry:v0.1.0/entry-0006":1,"release:v0.1.0":7},"release_version":"v0.1.0","schema_version":2}
8
+ {"data":{"kind":"added","status":"accepted"},"entry_id":"entry-0007","event":"entry.added","event_id":"event-0008","record_revisions":{"entry:v0.1.0/entry-0007":1,"release:v0.1.0":8},"release_version":"v0.1.0","schema_version":2}
9
+ {"data":{"kind":"quality","status":"accepted"},"entry_id":"entry-0008","event":"entry.added","event_id":"event-0009","record_revisions":{"entry:v0.1.0/entry-0008":1,"release:v0.1.0":9},"release_version":"v0.1.0","schema_version":2}
10
+ {"data":{"released_at":"2025-12-04"},"event":"release.finalized","event_id":"event-0010","record_revisions":{"release:v0.1.0":10},"release_version":"v0.1.0","schema_version":2}
@@ -0,0 +1,25 @@
1
+ ---
2
+ schema_version: 2
3
+ object_type: release_entry
4
+ versioning:
5
+ schema_version: 1
6
+ revision: 1
7
+ entry_id: entry-0001
8
+ release_version: v0.1.0
9
+ kind: added
10
+ summary: Core TTS pipeline with Piper backend, session management, and voice synthesis
11
+ status: accepted
12
+ audience: null
13
+ scopes: []
14
+ source_refs:
15
+ - git:8dcda9681fd521c62db70bd187f8dc11112d013d
16
+ paths:
17
+ - pipersynth/pipeline.py
18
+ issues: []
19
+ prs: []
20
+ sources: []
21
+ contributors: []
22
+ breaking: false
23
+ internal: false
24
+ order: 1
25
+ ---
@@ -0,0 +1,25 @@
1
+ ---
2
+ schema_version: 2
3
+ object_type: release_entry
4
+ versioning:
5
+ schema_version: 1
6
+ revision: 1
7
+ entry_id: entry-0002
8
+ release_version: v0.1.0
9
+ kind: added
10
+ summary: Asset management system for downloading and caching Piper voices
11
+ status: accepted
12
+ audience: null
13
+ scopes: []
14
+ source_refs:
15
+ - git:08000c2fed6d4c3b7155d74627f3fc2d172ea709
16
+ paths:
17
+ - pipersynth/asset_manager.py
18
+ issues: []
19
+ prs: []
20
+ sources: []
21
+ contributors: []
22
+ breaking: false
23
+ internal: false
24
+ order: 2
25
+ ---
@@ -0,0 +1,24 @@
1
+ ---
2
+ schema_version: 2
3
+ object_type: release_entry
4
+ versioning:
5
+ schema_version: 1
6
+ revision: 1
7
+ entry_id: entry-0003
8
+ release_version: v0.1.0
9
+ kind: added
10
+ summary: Convenience API for quick synthesis and streaming
11
+ status: accepted
12
+ audience: null
13
+ scopes: []
14
+ source_refs: []
15
+ paths:
16
+ - pipersynth/convenience.py
17
+ issues: []
18
+ prs: []
19
+ sources: []
20
+ contributors: []
21
+ breaking: false
22
+ internal: false
23
+ order: 3
24
+ ---
@@ -0,0 +1,24 @@
1
+ ---
2
+ schema_version: 2
3
+ object_type: release_entry
4
+ versioning:
5
+ schema_version: 1
6
+ revision: 1
7
+ entry_id: entry-0004
8
+ release_version: v0.1.0
9
+ kind: added
10
+ summary: CLI interface for synthesis, asset management, and diagnostics
11
+ status: accepted
12
+ audience: null
13
+ scopes: []
14
+ source_refs: []
15
+ paths:
16
+ - pipersynth/__main__.py
17
+ issues: []
18
+ prs: []
19
+ sources: []
20
+ contributors: []
21
+ breaking: false
22
+ internal: false
23
+ order: 4
24
+ ---
@@ -0,0 +1,25 @@
1
+ ---
2
+ schema_version: 2
3
+ object_type: release_entry
4
+ versioning:
5
+ schema_version: 1
6
+ revision: 1
7
+ entry_id: entry-0005
8
+ release_version: v0.1.0
9
+ kind: changed
10
+ summary: Migrated planning interface to utterplan
11
+ status: accepted
12
+ audience: null
13
+ scopes: []
14
+ source_refs:
15
+ - git:42e23f1a8c298eec7ba729ffd9aadee657d672c3
16
+ paths:
17
+ - pipersynth/planning.py
18
+ issues: []
19
+ prs: []
20
+ sources: []
21
+ contributors: []
22
+ breaking: false
23
+ internal: false
24
+ order: 5
25
+ ---
@@ -0,0 +1,25 @@
1
+ ---
2
+ schema_version: 2
3
+ object_type: release_entry
4
+ versioning:
5
+ schema_version: 1
6
+ revision: 1
7
+ entry_id: entry-0006
8
+ release_version: v0.1.0
9
+ kind: changed
10
+ summary: Migrated to audiocompose for composition and onnxvoice for ONNX-based synthesis
11
+ status: accepted
12
+ audience: null
13
+ scopes: []
14
+ source_refs:
15
+ - git:c65f8ac357f14dade729831eb855cdc05f468797
16
+ paths:
17
+ - pipersynth/_onnxvoice.py
18
+ issues: []
19
+ prs: []
20
+ sources: []
21
+ contributors: []
22
+ breaking: false
23
+ internal: false
24
+ order: 6
25
+ ---