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 701ac8f commit 8363ebcCopy full SHA for 8363ebc
pytest_asyncio/__init__.py
@@ -2,7 +2,10 @@
2
3
from __future__ import annotations
4
5
-from ._version import version as __version__ # noqa: F401
+from importlib.metadata import version
6
+
7
from .plugin import fixture, is_async_test
8
9
+__version__ = version(__name__)
10
11
__all__ = ("fixture", "is_async_test")
0 commit comments