Fix Python 3.8 tests

This commit is contained in:
Roman Mogylatov 2025-05-21 13:41:53 -04:00
parent c6d82b015e
commit 08e233079f

View File

@ -1,5 +1,11 @@
"""Test module for wiring with Annotated."""
import sys
import pytest
if sys.version_info < (3, 9):
pytest.skip("Annotated is only available in Python 3.9+", allow_module_level=True)
from decimal import Decimal
from typing import Callable, Annotated