mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-03 05:34:01 +00:00
Skip for py3.8
This commit is contained in:
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…
Reference in New Issue
Block a user