The oldest still-supported version of Blender is 4.2-LTS, which uses Python 3.11, so that's what's now the required Python version for BAT. Make the build system depend on `poetry-core` instead of `poetry`, to make package builds faster (especially important when using Tox for testing in various environments). This also re-generates the `poetry.lock` file, so updates the dependencies to their latest version compatible with the `project.toml` file.
10 lines
172 B
INI
10 lines
172 B
INI
[tox]
|
|
isolated_build = true
|
|
envlist = py311, py312, py313
|
|
|
|
[testenv]
|
|
whitelist_externals = poetry
|
|
commands=
|
|
poetry install -E zstandard
|
|
poetry run py.test --no-cov
|