Skip to content

Commit 598b0ea

Browse files
committed
install
1 parent 79abe99 commit 598b0ea

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/release-pypi.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,17 @@ jobs:
2020
python-version: 3.9
2121

2222
- name: Install dependencies
23-
run: pip install -U build twine pip
23+
run: pip install -U build twine
2424
- name: Overview Readme for release
2525
run: echo "# Lit Models" > README.md
2626
- name: Build package
2727
run: python -m build
2828
- name: Check package
2929
run: twine check dist/*
3030
- name: Install package
31-
run: pip install dist/*.tar.gz
31+
run: |
32+
pip install -u pip
33+
pip install dist/*.tar.gz
3234
3335
# We do this, since failures on test.pypi aren't that bad
3436
- name: Publish to Test PyPI

0 commit comments

Comments
 (0)