Skip to content

Commit

Permalink
langsmith no longer supports Python 3.8, so neither should our PyO3 c…
Browse files Browse the repository at this point in the history
…ode (#1285)

Drop support for Python 3.8 from the PyO3 bindings, and don't build
Python 3.8 wheels when publishing.
  • Loading branch information
obi1kenobi authored Dec 5, 2024
1 parent 3bd8258 commit a0f4609
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_langsmith_pyo3_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ env:
# Building wheels for Python 3.13 on Windows is broken at the moment with a linking error,
# so we build 3.13 wheels for other platforms explicitly instead of adding 3.13 here.
# https://github.com/PyO3/maturin-action/issues/292
SUPPORTED_PYTHON_VERSIONS: 'python3.8 python3.9 python3.10 python3.11 python3.12'
SUPPORTED_PYTHON_VERSIONS: 'python3.9 python3.10 python3.11 python3.12'
WORKING_DIRECTORY: rust/crates/langsmith-pyo3

jobs:
Expand Down
2 changes: 1 addition & 1 deletion rust/crates/langsmith-pyo3/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "langsmith-pyo3"
requires-python = ">=3.8"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
Expand Down

0 comments on commit a0f4609

Please sign in to comment.