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 0217fe9 commit 500ceccCopy full SHA for 500cecc
tests/test_to_tap_class.py
@@ -20,7 +20,8 @@
20
except ModuleNotFoundError:
21
_IS_PYDANTIC_V1 = None
22
else:
23
- _IS_PYDANTIC_V1 = pydantic.VERSION.startswith("1.")
+ # Pydantic v1 is incompatible with Python 3.14+
24
+ _IS_PYDANTIC_V1 = pydantic.VERSION.startswith("1.") and sys.version_info < (3, 14)
25
26
27
# To properly test the help message, we need to know how argparse formats it. It changed from 3.10 -> 3.13
0 commit comments