mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-03 05:34:01 +00:00
12 lines
281 B
Python
12 lines
281 B
Python
try:
|
|
import tomllib
|
|
except ImportError:
|
|
# if prior to 3.11, use alternative toml library
|
|
import toml as tomllib
|
|
|
|
|
|
def test_cli_template_version() -> None:
|
|
"""
|
|
Confirm that the version in the CLI pyproject file is the same as the version in the package.
|
|
"""
|