Skip to content

Commit

Permalink
revert
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 9933a9c commit ef5d414
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
13 changes: 13 additions & 0 deletions .github/actions/install_kedro_and_python_dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,21 @@ runs:
- name: Install `uv`
run: |
python -m pip install "uv==0.5.4"
shell: bash

- name: Install uv dependencies
run: |
uv pip install --system requests
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
8 changes: 1 addition & 7 deletions .github/actions/setup_tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,7 @@ runs:
key: ${{inputs.os}}-python-${{inputs.python-version}}

- name: Install Kedro and other Python Dependencies
run: |
python -m pip install "uv==0.5.4"
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
uv python -V
uv pip freeze
shell: bash
uses: "./.github/actions/install_kedro_and_python_dependencies"

- name: Setup Node.js and Install Dependencies
uses: "./.github/actions/install_node_dependencies"
Expand Down

0 comments on commit ef5d414

Please sign in to comment.