-
Notifications
You must be signed in to change notification settings - Fork 0
Create workflows to build and publish to PyPI #498
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| name: Build and Test Wheel | ||
| # Try to catch any issues before releases | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ master ] | ||
| paths-ignore: | ||
| - 'docs/**' | ||
| - '**.rst' | ||
| - '**.md' | ||
| - '.readthedocs.yaml' | ||
|
|
||
| jobs: | ||
| wheel: | ||
| name: build and test wheel | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: set up Python 3.8 | ||
| uses: actions/setup-python@v6 | ||
| with: | ||
| python-version: 3.8 | ||
|
|
||
| - name: clone sodetlib | ||
| uses: actions/checkout@v6 | ||
| with: | ||
| fetch-depth: 0 # fetch all tags | ||
|
|
||
| - name: install build dependencies | ||
| run: | | ||
| python3 -m pip install --upgrade build | ||
|
|
||
| - name: build wheel | ||
| run: | | ||
| python3 -m build | ||
|
|
||
| - name: install wheel | ||
| run: | | ||
| python3 -m pip install dist/sodetlib*.whl | ||
|
|
||
| - name: install requirements | ||
| run: | | ||
| python3 -m pip install -r requirements.txt | ||
|
|
||
| - name: test import | ||
| working-directory: ./tests # avoid direct usage of ./sodetlib/ | ||
| run: | | ||
| python3 -c 'import sodetlib' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| # Note: Renaming this file will break the PyPI trusted publisher. | ||
| # https://docs.pypi.org/trusted-publishers/ | ||
| name: Publish to PyPI | ||
|
|
||
| on: | ||
| release: | ||
| types: [ released ] | ||
| push: | ||
| tags: | ||
| # v0.X.Y pre-release tags | ||
| - 'v0.*.*a*' | ||
| - 'v0.*.*b*' | ||
| - 'v0.*.*rc*' | ||
|
|
||
| jobs: | ||
| build: | ||
| name: build wheel | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: set up Python 3.8 | ||
| uses: actions/setup-python@v6 | ||
| with: | ||
| python-version: 3.8 | ||
BrianJKoopman marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| - name: clone sodetlib | ||
| uses: actions/checkout@v6 | ||
| with: | ||
| fetch-depth: 0 # fetch all tags | ||
BrianJKoopman marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| - name: install build dependencies | ||
| run: | | ||
| python3 -m pip install --upgrade build | ||
|
|
||
| - name: build wheel | ||
| run: | | ||
| python3 -m build | ||
|
|
||
| - name: install wheel | ||
| run: | | ||
| python3 -m pip install dist/sodetlib*.whl | ||
|
|
||
| - name: install requirements | ||
| run: | | ||
| python3 -m pip install -r requirements.txt | ||
|
|
||
| - name: test import | ||
| working-directory: ./tests # avoid direct usage of ./sodetlib/ | ||
| run: | | ||
| python3 -c 'import sodetlib' | ||
|
|
||
| - name: upload dist | ||
| uses: actions/upload-artifact@v6 | ||
| with: | ||
| path: ./dist/ | ||
|
|
||
| pypi-publish: | ||
| name: upload release to PyPI | ||
| needs: build | ||
| runs-on: ubuntu-latest | ||
| environment: | ||
| name: pypi | ||
| url: https://pypi.org/p/sodetlib | ||
| permissions: | ||
| id-token: write # required for trusted publishing | ||
| steps: | ||
| - name: download dist | ||
| uses: actions/download-artifact@v5 | ||
| with: | ||
| path: dist | ||
|
|
||
| - name: publish package distributions to PyPI | ||
| uses: pypa/gh-action-pypi-publish@release/v1 | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.