mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-08 15:48:29 +00:00
Update GitHub Actions workflow to handle Python 3.13 dependencies
Co-Authored-By: Joe Moura <joao@crewai.com>
This commit is contained in:
5
.github/workflows/tests.yml
vendored
5
.github/workflows/tests.yml
vendored
@@ -28,7 +28,12 @@ jobs:
|
||||
run: uv python install ${{ matrix.python-version }}
|
||||
|
||||
- name: Install the project
|
||||
if: matrix.python-version != '3.13'
|
||||
run: uv sync --dev --all-extras
|
||||
|
||||
- name: Install the project (Python 3.13)
|
||||
if: matrix.python-version == '3.13'
|
||||
run: uv sync --dev # Skip all-extras for Python 3.13 due to onnxruntime compatibility
|
||||
|
||||
- name: Run tests
|
||||
run: uv run pytest --block-network --timeout=60 -vv
|
||||
|
||||
Reference in New Issue
Block a user