4 Commits

Author SHA1 Message Date
70207c98a0 fix replaybuffer docstring
patch bump
2026-03-28 22:22:07 +00:00
65b4142692 remove fail-on-missing, it's breaking the publish workflow. 2026-03-28 22:09:48 +00:00
9e4071aace scope hatch-dotenv to hatch-test env 2026-03-28 21:55:05 +00:00
ba61f7d9a1 bump deps
patch bump
2026-03-28 21:43:54 +00:00
3 changed files with 8 additions and 10 deletions

View File

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

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

@@ -21,7 +21,7 @@ classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = ["typer>=0.21.1", "obsws-python>=1.8.0", "python-dotenv>=1.1.0"]
dependencies = ["typer>=0.24.1", "obsws-python>=1.8.0", "python-dotenv>=1.2.2"]
[project.urls]
@@ -35,23 +35,21 @@ obsws-cli = "obsws_cli:app"
[tool.hatch.version]
path = "obsws_cli/__about__.py"
[tool.hatch.env]
requires = ["hatch-dotenv"]
[tool.hatch.envs.default]
workspace.members = [{ path = "../obsws-python" }]
dependencies = ["click-man>=0.5.1"]
[tool.hatch.envs.default.scripts]
cli = "obsws-cli {args:}"
man = "python man/generate.py --output=./man"
[tool.hatch.envs.hatch-test]
randomize = true
[tool.hatch.env]
requires = ["hatch-dotenv"]
[tool.hatch.env.collectors.dotenv.hatch-test]
env-files = [".env", ".test.env"]
fail-on-missing = true
[tool.hatch.envs.hatch-test]
randomize = true
[tool.hatch.envs.types]
extra-dependencies = ["mypy>=1.0.0"]