mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-19 19:41:13 -05:00
7 lines
205 B
Python
7 lines
205 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+")
|