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.
14 lines
267 B
INI
14 lines
267 B
INI
[tool:pytest]
|
|
addopts = -p pytest_cov -v --cov blender_asset_tracer --cov-report term-missing
|
|
|
|
[pep8]
|
|
max-line-length = 100
|
|
|
|
[mypy]
|
|
# This should match pyproject.toml
|
|
python_version = 3.11
|
|
|
|
warn_redundant_casts = True
|
|
ignore_missing_imports = True
|
|
incremental = True
|