3 Commits

Author SHA1 Message Date
d1a9cfabff patch bump 2026-04-20 14:01:54 +01:00
1d88f8a0f4 readd fail-on-missing
set min hatch-dotenv version
2026-04-20 13:49:02 +01:00
70207c98a0 fix replaybuffer docstring
patch bump
2026-03-28 22:22:07 +00:00
3 changed files with 9 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2025-present onyx-and-iris <code@onyxandiris.online>
#
# SPDX-License-Identifier: MIT
__version__ = '0.24.9'
__version__ = '0.24.11'

View File

@@ -9,7 +9,7 @@ app = typer.Typer()
@app.callback()
def main():
"""Control profiles in OBS."""
"""Control the replay buffer in OBS."""
@app.command('start')

View File

@@ -35,6 +35,13 @@ obsws-cli = "obsws_cli:app"
[tool.hatch.version]
path = "obsws_cli/__about__.py"
[tool.hatch.env]
requires = ["hatch-dotenv>=0.1.4"]
[tool.hatch.env.collectors.dotenv.hatch-test]
env-files = [".env", ".test.env"]
fail-on-missing = true
[tool.hatch.envs.default]
workspace.members = [{ path = "../obsws-python" }]
dependencies = ["click-man>=0.5.1"]
@@ -42,12 +49,6 @@ dependencies = ["click-man>=0.5.1"]
[tool.hatch.envs.default.scripts]
man = "python man/generate.py --output=./man"
[tool.hatch.env]
requires = ["hatch-dotenv"]
[tool.hatch.env.collectors.dotenv.hatch-test]
env-files = [".env", ".test.env"]
[tool.hatch.envs.hatch-test]
randomize = true