We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79abe99 commit 598b0eaCopy full SHA for 598b0ea
.github/workflows/release-pypi.yml
@@ -20,15 +20,17 @@ jobs:
20
python-version: 3.9
21
22
- name: Install dependencies
23
- run: pip install -U build twine pip
+ run: pip install -U build twine
24
- name: Overview Readme for release
25
run: echo "# Lit Models" > README.md
26
- name: Build package
27
run: python -m build
28
- name: Check package
29
run: twine check dist/*
30
- name: Install package
31
- run: pip install dist/*.tar.gz
+ run: |
32
+ pip install -u pip
33
+ pip install dist/*.tar.gz
34
35
# We do this, since failures on test.pypi aren't that bad
36
- name: Publish to Test PyPI
0 commit comments