-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
60 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,11 @@ env: | |
# Run the package tests using `pytest` | ||
# CIBW_TEST_REQUIRES: pytest | ||
# CIBW_TEST_COMMAND: pytest | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
make_sdist: | ||
name: Make SDist | ||
|
@@ -47,13 +52,14 @@ jobs: | |
- name: Build wheels | ||
run: python -m cibuildwheel --output-dir wheelhouse | ||
env: | ||
# Disable explicitly python 3.11 and building PyPy wheels | ||
CIBW_SKIP: cp311-* pp* | ||
# Disable building PyPy wheels | ||
CIBW_SKIP: pp* | ||
CIBW_PRERELEASE_PYTHONS: False | ||
|
||
- uses: actions/upload-artifact@v2 | ||
with: | ||
path: wheelhouse/*.whl | ||
|
||
build_aarch64_wheels: | ||
name: Build wheels manylinux_aarch64 | ||
runs-on: ubuntu-latest | ||
|
@@ -81,3 +87,37 @@ jobs: | |
- uses: actions/upload-artifact@v2 | ||
with: | ||
path: wheelhouse/*.whl | ||
|
||
upload_pypi_test: | ||
name: Upload to PyPI (test) | ||
needs: [build_wheels, build_aarch64_wheels, make_sdist] | ||
runs-on: ubuntu-20.04 | ||
if: github.event_name == 'push' && !(startsWith(github.ref_name, 'master')) | ||
steps: | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: artifact | ||
path: dist | ||
|
||
- uses: pypa/[email protected] | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.TEST_PYPI_API_TOKEN }} | ||
repository_url: https://test.pypi.org/legacy/ | ||
skip_existing: true | ||
|
||
upload_pypi: | ||
name: Upload to PyPI (prod) | ||
needs: [build_wheels, build_aarch64_wheels, make_sdist] | ||
runs-on: ubuntu-20.04 | ||
if: github.event_name == 'push' && startsWith(github.ref_name, 'master') | ||
steps: | ||
- uses: actions/download-artifact@v2 | ||
with: | ||
name: artifact | ||
path: dist | ||
|
||
- uses: pypa/[email protected] | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_API_TOKEN }} |
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,14 @@ | ||
============================= | ||
PyEDFlib 0.1.31 Release Notes | ||
============================= | ||
|
||
Authors | ||
======= | ||
|
||
* skjerns | ||
|
||
Issues closed for v0.1.31 | ||
------------------------- | ||
|
||
Pull requests for v0.1.31 | ||
------------------------- |
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 @@ | ||
.. include:: ../release/0.1.31-notes.rst |
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