Skip to content

Commit

Permalink
Merge branch 'fix/CI-runtime' of github.com:kedro-org/kedro-viz into …
Browse files Browse the repository at this point in the history
…fix/CI-runtime
  • Loading branch information
Huong Nguyen committed Nov 25, 2024
2 parents 42d059d + a272986 commit e8c30c7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 20 deletions.
29 changes: 14 additions & 15 deletions .github/actions/install_kedro_and_python_dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,17 @@ description: Installs Kedro from the main branch and other Python dependencies,
runs:
using: composite
steps:
steps:
- name: Install `uv`
run: |
python -m pip install "uv==0.5.4"
shell: bash
- name: Install Python dependencies
run: |-
uv pip install --system git+https://github.com/kedro-org/kedro@main
uv pip install --system -r package/test_requirements.txt -r demo-project/src/docker_requirements.txt -U
shell: bash
- name: Echo package versions
run: |-
python -V
uv pip freeze
shell: bash
- name: Install `uv`
run: |
python -m pip install "uv==0.5.4"
shell: bash
- name: Install Python dependencies
run: |-
uv pip install --system git+https://github.com/kedro-org/kedro@main
uv pip install --system -r package/test_requirements.txt -r demo-project/src/docker_requirements.txt -U
shell: bash
- name: Echo package versions
run: |-
python -V
pip freeze
shell: bash
5 changes: 0 additions & 5 deletions .github/actions/setup_tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,6 @@ runs:
path: ~\AppData\Local\pip\Cache
key: ${{inputs.os}}-python-${{inputs.python-version}}

- name: Install uv
run: |
pip install uv
shell: bash

- name: Install Kedro and other Python Dependencies
uses: "./.github/actions/install_kedro_and_python_dependencies"

Expand Down

0 comments on commit e8c30c7

Please sign in to comment.