Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Sajid Alam <[email protected]>
  • Loading branch information
SajidAlamQB committed Nov 25, 2024
1 parent eac8d39 commit 3c57680
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions .github/actions/install_kedro_and_python_dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,19 @@ description: Installs Kedro from the main branch and other Python dependencies,
runs:
using: composite
steps:
- name: Install Python dependencies
run: |-
pip install git+https://github.com/kedro-org/kedro@main
pip install -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
- name: Install `uv`
run: |
python -m pip install "uv==0.5.4"
shell: bash

- name: Install Python dependencies
run: |-
uv pip install git+https://github.com/kedro-org/kedro@main
uv pip install -r package/test_requirements.txt -r demo-project/src/docker_requirements.txt -U
shell: bash

- name: Echo package versions
run: |-
uv python -V
uv pip freeze
shell: bash

0 comments on commit 3c57680

Please sign in to comment.