Initial feedstock commit with conda-smithy 3.21.1.

This commit is contained in:
nidichaogequ
2023-10-24 18:46:43 +08:00
commit e41b11e193
36 changed files with 1849 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
"""Typeguard support for tests."""
import pytest
try:
import typeguard # noqa: F401
except ImportError:
has_typeguard = False
else:
has_typeguard = True
skip_if_typeguard = pytest.mark.skipif(
has_typeguard,
reason="Broken if Typeguard is enabled",
)