2024-02-07 00:05:11 +00:00
|
|
|
import sys
|
|
|
|
|
2024-07-19 22:03:19 +00:00
|
|
|
if sys.version_info >= (3, 11):
|
|
|
|
import tomllib
|
|
|
|
else:
|
|
|
|
# for python 3.10 and below, which doesnt have stdlib tomllib
|
|
|
|
import tomli as tomllib
|
|
|
|
|
2024-02-07 00:05:11 +00:00
|
|
|
from packaging.version import parse as parse_version
|
|
|
|
import re
|
|
|
|
|
2024-03-15 19:14:44 +00:00
|
|
|
MIN_VERSION_LIBS = [
|
|
|
|
"langchain-core",
|
|
|
|
"langchain-community",
|
|
|
|
"langchain",
|
|
|
|
"langchain-text-splitters",
|
2024-07-11 20:09:57 +00:00
|
|
|
"SQLAlchemy",
|
2024-03-15 19:14:44 +00:00
|
|
|
]
|
2024-02-07 00:05:11 +00:00
|
|
|
|
2024-07-22 17:46:15 +00:00
|
|
|
SKIP_IF_PULL_REQUEST = ["langchain-core"]
|
|
|
|
|
2024-02-07 00:05:11 +00:00
|
|
|
|
|
|
|
def get_min_version(version: str) -> str:
|
2024-04-10 00:54:58 +00:00
|
|
|
# base regex for x.x.x with cases for rc/post/etc
|
|
|
|
# valid strings: https://peps.python.org/pep-0440/#public-version-identifiers
|
|
|
|
vstring = r"\d+(?:\.\d+){0,2}(?:(?:a|b|rc|\.post|\.dev)\d+)?"
|
2024-02-07 00:05:11 +00:00
|
|
|
# case ^x.x.x
|
2024-04-10 00:54:58 +00:00
|
|
|
_match = re.match(f"^\\^({vstring})$", version)
|
2024-02-07 00:05:11 +00:00
|
|
|
if _match:
|
|
|
|
return _match.group(1)
|
|
|
|
|
|
|
|
# case >=x.x.x,<y.y.y
|
2024-04-10 00:54:58 +00:00
|
|
|
_match = re.match(f"^>=({vstring}),<({vstring})$", version)
|
2024-02-07 00:05:11 +00:00
|
|
|
if _match:
|
|
|
|
_min = _match.group(1)
|
|
|
|
_max = _match.group(2)
|
|
|
|
assert parse_version(_min) < parse_version(_max)
|
|
|
|
return _min
|
|
|
|
|
|
|
|
# case x.x.x
|
2024-04-10 00:54:58 +00:00
|
|
|
_match = re.match(f"^({vstring})$", version)
|
2024-02-07 00:05:11 +00:00
|
|
|
if _match:
|
|
|
|
return _match.group(1)
|
|
|
|
|
|
|
|
raise ValueError(f"Unrecognized version format: {version}")
|
|
|
|
|
|
|
|
|
2024-07-22 17:46:15 +00:00
|
|
|
def get_min_version_from_toml(toml_path: str, versions_for: str):
|
2024-02-07 00:05:11 +00:00
|
|
|
# Parse the TOML file
|
|
|
|
with open(toml_path, "rb") as file:
|
|
|
|
toml_data = tomllib.load(file)
|
|
|
|
|
|
|
|
# Get the dependencies from tool.poetry.dependencies
|
|
|
|
dependencies = toml_data["tool"]["poetry"]["dependencies"]
|
|
|
|
|
|
|
|
# Initialize a dictionary to store the minimum versions
|
|
|
|
min_versions = {}
|
|
|
|
|
|
|
|
# Iterate over the libs in MIN_VERSION_LIBS
|
|
|
|
for lib in MIN_VERSION_LIBS:
|
2024-07-22 17:46:15 +00:00
|
|
|
if versions_for == "pull_request" and lib in SKIP_IF_PULL_REQUEST:
|
|
|
|
# some libs only get checked on release because of simultaneous
|
|
|
|
# changes
|
|
|
|
continue
|
2024-02-07 00:05:11 +00:00
|
|
|
# Check if the lib is present in the dependencies
|
|
|
|
if lib in dependencies:
|
|
|
|
# Get the version string
|
|
|
|
version_string = dependencies[lib]
|
|
|
|
|
2024-04-10 00:54:58 +00:00
|
|
|
if isinstance(version_string, dict):
|
|
|
|
version_string = version_string["version"]
|
|
|
|
|
2024-02-07 00:05:11 +00:00
|
|
|
# Use parse_version to get the minimum supported version from version_string
|
|
|
|
min_version = get_min_version(version_string)
|
|
|
|
|
|
|
|
# Store the minimum version in the min_versions dictionary
|
|
|
|
min_versions[lib] = min_version
|
|
|
|
|
|
|
|
return min_versions
|
|
|
|
|
|
|
|
|
2024-03-15 19:14:44 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
# Get the TOML file path from the command line argument
|
|
|
|
toml_file = sys.argv[1]
|
2024-07-22 17:46:15 +00:00
|
|
|
versions_for = sys.argv[2]
|
|
|
|
assert versions_for in ["release", "pull_request"]
|
2024-02-07 00:05:11 +00:00
|
|
|
|
2024-03-15 19:14:44 +00:00
|
|
|
# Call the function to get the minimum versions
|
2024-07-22 17:46:15 +00:00
|
|
|
min_versions = get_min_version_from_toml(toml_file, versions_for)
|
2024-02-07 00:05:11 +00:00
|
|
|
|
infra: update mypy 1.10, ruff 0.5 (#23721)
```python
"""python scripts/update_mypy_ruff.py"""
import glob
import tomllib
from pathlib import Path
import toml
import subprocess
import re
ROOT_DIR = Path(__file__).parents[1]
def main():
for path in glob.glob(str(ROOT_DIR / "libs/**/pyproject.toml"), recursive=True):
print(path)
with open(path, "rb") as f:
pyproject = tomllib.load(f)
try:
pyproject["tool"]["poetry"]["group"]["typing"]["dependencies"]["mypy"] = (
"^1.10"
)
pyproject["tool"]["poetry"]["group"]["lint"]["dependencies"]["ruff"] = (
"^0.5"
)
except KeyError:
continue
with open(path, "w") as f:
toml.dump(pyproject, f)
cwd = "/".join(path.split("/")[:-1])
completed = subprocess.run(
"poetry lock --no-update; poetry install --with typing; poetry run mypy . --no-color",
cwd=cwd,
shell=True,
capture_output=True,
text=True,
)
logs = completed.stdout.split("\n")
to_ignore = {}
for l in logs:
if re.match("^(.*)\:(\d+)\: error:.*\[(.*)\]", l):
path, line_no, error_type = re.match(
"^(.*)\:(\d+)\: error:.*\[(.*)\]", l
).groups()
if (path, line_no) in to_ignore:
to_ignore[(path, line_no)].append(error_type)
else:
to_ignore[(path, line_no)] = [error_type]
print(len(to_ignore))
for (error_path, line_no), error_types in to_ignore.items():
all_errors = ", ".join(error_types)
full_path = f"{cwd}/{error_path}"
try:
with open(full_path, "r") as f:
file_lines = f.readlines()
except FileNotFoundError:
continue
file_lines[int(line_no) - 1] = (
file_lines[int(line_no) - 1][:-1] + f" # type: ignore[{all_errors}]\n"
)
with open(full_path, "w") as f:
f.write("".join(file_lines))
subprocess.run(
"poetry run ruff format .; poetry run ruff --select I --fix .",
cwd=cwd,
shell=True,
capture_output=True,
text=True,
)
if __name__ == "__main__":
main()
```
2024-07-03 17:33:27 +00:00
|
|
|
print(" ".join([f"{lib}=={version}" for lib, version in min_versions.items()]))
|