ensure tox tests run setup/teardown scripts

bump min python version to 3.11 (because of ExceptionGroup in tests)

patch bump
This commit is contained in:
2025-06-11 16:37:02 +01:00
parent 37364e7243
commit 51923dc8a8
5 changed files with 29 additions and 7 deletions

View File

@@ -3,7 +3,7 @@ name = "slobs-cli"
description = "A command line application for Streamlabs Desktop"
authors = [{ name = "onyx-and-iris", email = "code@onyxandiris.online" }]
dependencies = ["pyslobs>=2.0.4", "asyncclick>=8.1.8"]
requires-python = ">=3.10"
requires-python = ">=3.11"
readme = "README.md"
license = { text = "MIT" }
dynamic = ["version"]
@@ -33,4 +33,9 @@ test.env_file = ".env"
post_test.cmd = "python tests/teardown.py"
[dependency-groups]
dev = ["tox-pdm>=0.7.2", "pytest>=8.4.0", "virtualenv-pyenv>=0.5.0"]
dev = [
"tox-pdm>=0.7.2",
"pytest>=8.4.0",
"virtualenv-pyenv>=0.5.0",
"pytest-randomly>=3.16.0",
]