Skip to content

Commit

Permalink
Fix __version__ import
Browse files Browse the repository at this point in the history
  • Loading branch information
djhoese committed Dec 21, 2022
1 parent a7b0821 commit 6eed0df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy-sdist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:

- name: Create sdist
shell: bash -l {0}
run: python setup.py sdist
run: |
pip install build
python -m build -s
- name: Publish package to PyPI
if: github.event.action == 'published'
Expand Down
1 change: 1 addition & 0 deletions intake_satpy/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .version import __version__ # noqa

0 comments on commit 6eed0df

Please sign in to comment.