Skip to content

Commit

Permalink
Replace UV with regular pip (#1292)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei-Aksionov authored Apr 15, 2024
1 parent c483198 commit af8347b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/cpu-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install uv
run: pip install uv
cache: 'pip'
cache-dependency-path: |
pyproject.toml
- name: Install minimal dependencies
run: |
uv pip install --system .
uv pip list
pip install .
pip list
# make sure all modules are still importable with only the minimal dependencies available
modules=$(
find litgpt -type f -name "*.py" | \
Expand All @@ -58,8 +58,8 @@ jobs:
- name: Install all dependencies
run: |
uv pip install --system '.[all,test]'
uv pip list
pip install '.[all,test]'
pip list
- name: Run tests
run: |
Expand Down

0 comments on commit af8347b

Please sign in to comment.