Skip to content
This repository has been archived by the owner on Oct 24, 2024. It is now read-only.

Fix bug in pypi publish GH workflow #121

Merged
merged 1 commit into from
Jul 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/pypipublish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,9 @@ jobs:
ls -ltrh dist

- name: Verify the built dist/wheel is valid
if: github.event_name == 'push'
run: |
python -m pip install --upgrade pip
python -m pip install dist/xarray-datatree*.whl
python -m pip install dist/xarray_datatree*.whl
python -c "import datatree; print(datatree.__version__)"

upload-to-pypi:
Expand Down