docs: fix workspace package count and Python version in CONTRIBUTING.md - #6685
docs: fix workspace package count and Python version in CONTRIBUTING.md#6685Iliamgeladze1998 wants to merge 1 commit into
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
📝 WalkthroughWalkthroughThe contribution guide updates its Python support and development target versions, and expands the uv workspace package table from four to six packages. ChangesContribution guide alignment
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
Note: Per the CONTRIBUTING.md, this PR was authored with AI assistance. I was unable to add the |
Fix crewAIInc#6664: Update workspace description from 'four' to 'six' packages and add missing entries (crewai-core, cli) to the package table to match pyproject.toml uv.workspace members. Fix crewAIInc#6662: Update Python version from '3.10-3.14 (targets 3.12)' to '3.10-3.13 (targets 3.13)' to align with .python-version file (3.13) and pyproject.toml requires-python (>=3.10,<3.14).
b066d4a to
ce43068
Compare
Summary
Fixes two documentation discrepancies in
.github/CONTRIBUTING.md:1. Incorrect workspace package count (#6664)
The CONTRIBUTING.md stated "four packages under
lib/" and listed only 4 packages in the table, butpyproject.tomldefines 6 workspace members:Fix: Updated count from "four" to "six" and added the missing
crewai-coreandclipackages to the table.2. Python version discrepancy (#6662)
Three different Python versions were referenced:
.python-version: 3.13.github/workflows/publish.yml: 3.12.github/CONTRIBUTING.md: "development targets 3.12"pyproject.toml:>=3.10,<3.14Fix: Updated CONTRIBUTING.md to say "3.10–3.13 (development targets 3.13)" to match the
.python-versionfile and the upper bound inpyproject.toml.Testing
Documentation-only change, no code affected.
Fixes #6664
Fixes #6662