Skip to content

Commit

Permalink
Merge pull request #144 from ssciwr/uv
Browse files Browse the repository at this point in the history
Use uv instead of pip in CI
  • Loading branch information
lkeegan authored May 24, 2024
2 parents 87eaf79 + 0f6d250 commit 0c0abda
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ jobs:

- name: Install Python development requirements
run: |
python -m pip install -r requirements.txt
python -m pip install -r requirements-dev.txt
pip install uv
uv pip install --system -r requirements.txt
uv pip install --system -r requirements-dev.txt
- name: Run Python tests
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- run: pip install -r requirements.txt
- run: pip install uv
- run: uv pip install --system -r requirements.txt
- run: |
for filename in $(ls lunchtime*/*.ipynb)
do
Expand Down
2 changes: 1 addition & 1 deletion jupyter_nbconvert_template/index.html.j2
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/* backport https://github.com/jupyter/nbconvert/pull/2032/commits/d2557d63c06b19694fc30564050b697bf102705f */
main {
height: 100%;
height: 100%;
}
#custom-header {
Expand Down

0 comments on commit 0c0abda

Please sign in to comment.