mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-03-20 02:38:15 +00:00
* feat(devtools): add release command and fix automerge on protected branches Replace gh pr merge --auto with polling-based merge wait that prints the PR URL for manual review. Add unified release command that chains bump and tag into a single end-to-end workflow. * feat(devtools): trigger PyPI publish workflow after GitHub release * refactor(devtools): extract shared helpers to eliminate duplication Extract _poll_pr_until_merged, _update_all_versions, _generate_release_notes, _update_docs_and_create_pr, _create_tag_and_release, and _trigger_pypi_publish into reusable helpers. All three commands (bump, tag, release) now compose from these shared functions.
34 lines
787 B
TOML
34 lines
787 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",
|
|
"toml~=0.10.2",
|
|
"openai~=1.83.0",
|
|
"python-dotenv~=1.1.1",
|
|
"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"
|
|
devtools = "crewai_devtools.cli:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.version]
|
|
path = "src/crewai_devtools/__init__.py"
|
|
|