Files
code-interpreter/executor/pyproject.toml
T
Jamison Lahman 8950eadc06 Release code-interpreter 0.4.4 (#63)
* Release code-interpreter 0.4.4

Bump code-interpreter and executor to 0.4.4 (FastAPI/Starlette upgrade,
configurable executor Docker network, dependency bumps since 0.4.3).

Also publish a versioned image tag from docker-build-push.yml so
consumers can pin a specific release instead of tracking :latest. The
build runs via workflow_dispatch on main, where type=semver yields no
tag, so the version is read from pyproject.toml and emitted via
type=raw alongside :latest.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>

* nit

---------

Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-23 11:06:21 -07:00

38 lines
809 B
TOML

[build-system]
requires = ["hatchling>=1.25.0"]
build-backend = "hatchling.build"
[project]
name = "executor"
version = "0.4.4"
description = "Dependency bundle for the code interpreter executor image"
requires-python = ">=3.11,<3.12"
license = { text = "MIT" }
authors = [{ name = "Chris Weaver" }]
dependencies = [
"fpdf2==2.8.7",
"matplotlib==3.9.1",
"matplotlib-inline>=0.1.7",
"matplotlib-venn>=1.1.2",
"numpy==1.26.4",
"opencv-python>=4.11.0.86",
"openpyxl>=3.1.5",
"pandas==2.2.2",
"pdfplumber>=0.11.7",
"pydantic>=2.11.9",
"pypdf==6.13.3",
"python-docx==1.2.0",
"python-pptx>=1.0.2",
"scikit-image>=0.25.2",
"scikit-learn>=1.7.2",
"scipy>=1.16.2",
"seaborn>=0.13.2",
"xgboost>=3.0.5",
]
[tool.hatch.build.targets.wheel]
packages = []
include = [
"README.md",
]