Skip to content

Commit

Permalink
core[major]: Drop python 3.8 support (#25996)
Browse files Browse the repository at this point in the history
Drop python 3.8 support as EOL is 2024 October
  • Loading branch information
eyurtsev authored Sep 3, 2024
1 parent 0da201c commit 8e4bae3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 97 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/check_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def _get_configs_for_single_dir(job: str, dir_: str) -> List[Dict[str, str]]:
{"working-directory": dir_, "python-version": f"3.{v}"}
for v in range(8, 13)
]
min_python = "3.8"
min_python = "3.9"
max_python = "3.12"

# custom logic for specific directories
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.11"
working-directory:
- "libs/partners/openai"
Expand Down
97 changes: 3 additions & 94 deletions libs/core/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion libs/core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ignore_missing_imports = true
"Release Notes" = "https://github.com/langchain-ai/langchain/releases?q=tag%3A%22langchain-core%3D%3D0%22&expanded=true"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
python = ">=3.9,<4.0"
langsmith = "^0.1.75"
tenacity = "^8.1.0,!=8.4.0"
jsonpatch = "^1.33"
Expand Down

0 comments on commit 8e4bae3

Please sign in to comment.