Files
crewAI/lib/devtools/pyproject.toml
Iris Clawd 7ae25b2e3d chore: widen click dependency to >=8.1.7,<9
Relaxes the click pin from ~=8.1.7 (which caps at <8.2.0) to >=8.1.7,<9.
This allows enterprise customers with InfoSec requirements for click 8.3.x
to install CrewAI without dependency resolution failures.

Click 8.1→8.3 has no breaking changes for our CLI decorator usage.

Affected files:
- lib/crewai/pyproject.toml
- lib/cli/pyproject.toml
- lib/devtools/pyproject.toml
2026-06-01 21:24:01 +00:00

42 lines
962 B
TOML

[project]
name = "crewai-devtools"
dynamic = ["version"]
description = "Development tools for version bumping and git automation"
readme = "README.md"
authors = [
{ name = "Greyson R. LaLonde", email = "greyson@crewai.com" },
]
requires-python = ">=3.10, <3.14"
classifiers = ["Private :: Do Not Upload"]
private = true
dependencies = [
"click>=8.1.7,<9",
"tomlkit~=0.13.2",
"openai>=1.83.0,<3",
"python-dotenv>=1.2.2,<2",
"pygithub~=1.59.1",
"rich>=13.9.4",
]
[project.scripts]
bump-version = "crewai_devtools.cli:bump"
tag = "crewai_devtools.cli:tag"
release = "crewai_devtools.cli:release"
docs-check = "crewai_devtools.docs_check:docs_check"
devtools = "crewai_devtools.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--noconftest"
[tool.uv]
exclude-newer = "3 days"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/crewai_devtools/__init__.py"