mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-06 04:57:58 -05:00
9 lines
214 B
Python
9 lines
214 B
Python
import sys
|
|
|
|
import pytest
|
|
|
|
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+"
|
|
)
|