3 Commits

Author SHA1 Message Date
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
2 changed files with 7 additions and 9 deletions

View File

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

View File

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