From e7a739bc9fde86b44f07063cb5644e433a4dbea1 Mon Sep 17 00:00:00 2001 From: "m.aliarslan" <86300262+Kewe63@users.noreply.github.com> Date: Mon, 7 Sep 2026 20:15:34 +0300 Subject: [PATCH] fix(seismic-web3): sync runtime package version --- clients/py/src/seismic_web3/__init__.py | 2 +- clients/py/tests/test_placeholder.py | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/clients/py/src/seismic_web3/__init__.py b/clients/py/src/seismic_web3/__init__.py index 9de2aa8f..6324e7b6 100644 --- a/clients/py/src/seismic_web3/__init__.py +++ b/clients/py/src/seismic_web3/__init__.py @@ -37,7 +37,7 @@ :func:`build_seismic_typed_data` """ -__version__ = "0.2.2" +__version__ = "0.3.0" # -- Types ------------------------------------------------------------------- from seismic_web3._types import ( diff --git a/clients/py/tests/test_placeholder.py b/clients/py/tests/test_placeholder.py index 7f7290f2..801ce6af 100644 --- a/clients/py/tests/test_placeholder.py +++ b/clients/py/tests/test_placeholder.py @@ -1,5 +1,7 @@ +from importlib.metadata import version + import seismic_web3 -def test_import(): - assert seismic_web3.__version__ == "0.2.2" +def test_module_version_matches_distribution_metadata(): + assert seismic_web3.__version__ == version("seismic-web3")