# Tenzir Test v1.10.1

Project fixtures can now declare their Python package dependencies inline with PEP 723 metadata. tenzir-test installs those dependencies before loading fixtures, so regular test runs and fixture mode work for projects with self-contained fixture modules.

## 🐞 Bug Fixes

### Project fixture inline dependencies

May 13, 2026 · [@mavam](https://github.com/mavam), [@codex](https://github.com/codex) · [#47](https://github.com/tenzir/test/pull/47)

Project fixtures can now declare Python package dependencies inline with PEP 723 metadata:

```python
# /// script
# dependencies = ["boto3"]
# ///
```

`tenzir-test` installs these dependencies with `uv` before importing fixture modules, so fixtures used during regular test runs and `tenzir-test --fixture` can manage their own Python package requirements.

[ Download on GitHub ](https://github.com/tenzir/test/releases/tag/v1.10.1)

[Get the release artifacts and source code.](https://github.com/tenzir/test/releases/tag/v1.10.1)