-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update packaging configuration and workflow (#147)
* Add separate workflow for uploading to TestPyPI * Remove version_scheme for Test PyPI * Remove cache step * Use node_and_date * Remove setup.py
- Loading branch information
Showing
6 changed files
with
66 additions
and
17 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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,56 @@ | ||
name: Build and Upload xbatcher to TestPyPI | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
publish-testpypi: | ||
name: Publish to Test PyPI | ||
runs-on: ubuntu-latest | ||
if: github.repository == 'xarray-contrib/xbatcher' | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
with: | ||
# fetch all history so that setuptools-scm works | ||
fetch-depth: 0 | ||
|
||
- name: Set up Python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Install dependencies | ||
run: python -m pip install build | ||
|
||
- name: Fix up version string for TestPyPI | ||
if: ${{ !startsWith(github.ref, 'refs/tags') }} | ||
run: | | ||
sed --in-place "s/node-and-date/no-local-version/g" pyproject.toml | ||
- name: Build tarball and wheels | ||
run: | | ||
python -m build | ||
echo "Generated files:" | ||
ls -lh dist/ | ||
- name: Verify the built dist/wheel is valid | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install dist/xbatcher*.whl | ||
python -m xbatcher.util.print_versions | ||
- name: Publish package to TestPyPI | ||
uses: pypa/[email protected] | ||
with: | ||
password: ${{ secrets.TEST_PYPI_API_TOKEN }} | ||
repository_url: https://test.pypi.org/legacy/ | ||
# verbose: true |
This file contains 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
This file contains 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