mirror of https://github.com/tiangolo/fastapi.git
10 lines
303 B
Python
10 lines
303 B
Python
import sys
|
|
|
|
import pytest
|
|
|
|
needs_py37 = pytest.mark.skipif(sys.version_info < (3, 7), reason="requires python3.7+")
|
|
needs_py39 = pytest.mark.skipif(sys.version_info < (3, 9), reason="requires python3.9+")
|
|
needs_py310 = pytest.mark.skipif(
|
|
sys.version_info < (3, 10), reason="requires python3.10+"
|
|
)
|