Skip for py3.8

pull/11175/head
Nuno Campos 11 months ago
parent 5ca461160b
commit b8e3e1118d

@ -1,3 +1,4 @@
import sys
from typing import Callable
import pytest
@ -8,6 +9,9 @@ from langchain.schema.runnable.utils import (
)
@pytest.mark.skipif(
sys.version_info < (3, 9), reason="Requires python version >= 3.9 to run."
)
@pytest.mark.parametrize(
"func, expected_source",
[

Loading…
Cancel
Save