codeflash-agent/packages/codeflash-python/pyproject.toml
Kevin Turcios 1e8cbbede4
Fix Dependabot resolver and bump GitPython for security (#42)
* Fix Dependabot security updates and bump GitPython to 3.1.47+

Dependabot's uv ecosystem resolver was inferring Python 3.9 from the
workspace root's requires-python, then failing because sub-packages
require >=3.12. Adding .python-version=3.12 tells the resolver to use
a compatible Python. Also bumps gitpython>=3.1.47 to resolve the two
open security advisories (GHSA unsafe option check, command injection).

* Bump codeflash-core and codeflash-python versions for release
2026-04-28 20:28:42 -05:00

33 lines
655 B
TOML

[project]
name = "codeflash-python"
version = "0.1.2.dev0"
requires-python = ">=3.9"
dependencies = [
"codeflash-core",
"coverage[toml]>=7.0",
"dill>=0.3",
"gitpython>=3.1.47",
"isort>=5.0",
"jedi>=0.19",
"junitparser>=3.2",
"lxml>=5.3.0",
"libcst>=1.8.6",
"tomlkit>=0.12",
"wcwidth>=0.2",
"crosshair-tool>=0.0.78; python_version < '3.15'",
]
[project.scripts]
codeflash = "codeflash_python.pipeline._cli:main"
[build-system]
requires = ["uv_build>=0.7.2,<0.8"]
build-backend = "uv_build"
[tool.uv.sources]
codeflash-core = { workspace = true }
[dependency-groups]
dev = [
"parameterized>=0.9.0",
]