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 1917842 commit 79abe99Copy full SHA for 79abe99
.github/workflows/release-pypi.yml
@@ -20,13 +20,15 @@ jobs:
20
python-version: 3.9
21
22
- name: Install dependencies
23
- run: pip install -U build twine
+ run: pip install -U build twine pip
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
32
33
# We do this, since failures on test.pypi aren't that bad
34
- name: Publish to Test PyPI
0 commit comments