From dede28b0cd7a571c4f6ff81ccc32c5eba049ed9c Mon Sep 17 00:00:00 2001 From: Anthony Carapetis Date: Wed, 21 Aug 2024 22:21:53 +1000 Subject: [PATCH] Add missing dependency Was getting this via pytest in my dev env so didn't notice :( --- pyproject.toml | 1 + shroudstone/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 572e864..b0eaf46 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,7 @@ classifiers = [ keywords = ["Stormgate"] dynamic = ["version", "description"] dependencies = [ + "packaging>=20.4", "pillow>=5.0", "protobuf~=5.27.3", "pydantic~=2.6", diff --git a/shroudstone/__init__.py b/shroudstone/__init__.py index 7d62580..d382071 100644 --- a/shroudstone/__init__.py +++ b/shroudstone/__init__.py @@ -1,3 +1,3 @@ """Python utilities for working with Stormgate replays""" -__version__ = "0.2.5" +__version__ = "0.2.6"