Skip to content

Commit

Permalink
install mldev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renan-souza committed Nov 27, 2024
1 parent 01a49c8 commit 6d1333a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/create-release-n-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ jobs:
- name: Test pip install multiple adapters
run: pip install flowcept[mlflow,tensorboard]
- name: Install our dependencies
run: pip install flowcept[all] # This will install all dependencies, for all adapters and dev deps.
run: pip install flowcept[all]
- name: Install ml_dev dependencies
run: pip install flowcept[ml_dev]
- name: Pip list
run: pip list
- name: Run Docker Compose
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/run-tests-kafka.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install .[all]
python -m pip install .[ml_dev]
- name: Run docker compose
run: docker compose -f deployment/compose-kafka.yml up -d
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/run-tests-py11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install .[all]
python -m pip install .[ml_dev]
- name: List installed packages
run: pip list
Expand Down

0 comments on commit 6d1333a

Please sign in to comment.