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 30e1023 commit 19f350fCopy full SHA for 19f350f
.github/workflows/publish.yml
@@ -39,6 +39,11 @@ 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
43
+ run: |
44
+ pip install $(find dist -type f -name "*.whl")
45
+ du -h $(python -c "import pvlib; print(pvlib.__path__[0])")
46
+
47
# only publish distribution to PyPI for tagged commits
48
- name: Publish distribution to PyPI
49
if: startsWith(github.ref, 'refs/tags/v')
0 commit comments