We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6d82b0 commit 08e2330Copy full SHA for 08e2330
tests/unit/samples/wiring/module_annotated.py
@@ -1,5 +1,11 @@
1
"""Test module for wiring with Annotated."""
2
3
+import sys
4
+import pytest
5
+
6
+if sys.version_info < (3, 9):
7
+ pytest.skip("Annotated is only available in Python 3.9+", allow_module_level=True)
8
9
from decimal import Decimal
10
from typing import Callable, Annotated
11
0 commit comments