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 19f350f commit 526ce84Copy full SHA for 526ce84
.github/workflows/publish.yml
@@ -39,11 +39,14 @@ jobs:
39
- name: Check metadata verification
40
run: python -m twine check --strict dist/*
41
42
- - name: Ensure that the wheel installs correctly, and show installed size
+ - name: Ensure that the wheel installs successfully
43
run: |
44
- pip install $(find dist -type f -name "*.whl")
45
- du -h $(python -c "import pvlib; print(pvlib.__path__[0])")
46
-
+ mkdir ./tmp
+ pip install $(find dist -type f -name "*.whl") --target=./tmp
+
47
+ - name: List installed file sizes
48
+ du -h ./tmp
49
50
# only publish distribution to PyPI for tagged commits
51
- name: Publish distribution to PyPI
52
if: startsWith(github.ref, 'refs/tags/v')
0 commit comments