-
Notifications
You must be signed in to change notification settings - Fork 531
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3336 from nipy/rel/1.6.1
REL: 1.6.1
- Loading branch information
Showing
15 changed files
with
159 additions
and
117 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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Packaging | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- maint/* | ||
- rel/* | ||
tags: | ||
- '*' | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
package: | ||
# Build packages and upload | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
include: | ||
- os: ubuntu-latest | ||
python-version: 3.8 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Display Python version | ||
run: python -c "import sys; print(sys.version)" | ||
- name: Create virtual environment | ||
run: tools/ci/create_venv.sh | ||
- name: Build sdist | ||
run: tools/ci/build_archive.sh | ||
env: | ||
INSTALL_TYPE: sdist | ||
- name: Build wheel | ||
run: tools/ci/build_archive.sh | ||
env: | ||
INSTALL_TYPE: wheel | ||
### Temporary | ||
- name: Check packages with twine | ||
run: | | ||
pip install twine | ||
twine check dist/* | ||
### Switch back to this if we figure out who has permissions on test.pypi.org | ||
# - name: Test PyPI upload | ||
# uses: pypa/gh-action-pypi-publish@master | ||
# with: | ||
# user: __token__ | ||
# password: ${{ secrets.TEST_PYPI_API_TOKEN }} | ||
# repository_url: https://test.pypi.org/legacy/ | ||
# skip_existing: true | ||
- name: Upload to PyPI (on tags) | ||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | ||
uses: pypa/gh-action-pypi-publish@master | ||
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 |
---|---|---|
|
@@ -55,6 +55,7 @@ David Mordom <[email protected]> | |
David Welch <[email protected]> <[email protected]> | ||
Dimitri Papadopoulos Orfanos <[email protected]> | ||
Dmytro Belevtsoff <[email protected]> | ||
Dorian Vogel <[email protected]> | ||
Dylan M. Nielson <[email protected]> | ||
Dylan M. Nielson <[email protected]> <[email protected]> | ||
Eduard Ort <[email protected]> | ||
|
@@ -73,6 +74,7 @@ Gilles de Hollander <[email protected]> | |
Gio Piantoni <[email protected]> | ||
Guillaume Flandin <[email protected]> | ||
Hans Johnson <[email protected]> <[email protected]> | ||
Henry Jones <[email protected]> | ||
Horea Christian <[email protected]> <[email protected]> | ||
Hrvoje Stojic <[email protected]> | ||
Isaac Schwabacher <[email protected]> | ||
|
@@ -153,6 +155,8 @@ Ranjit Khanuja <[email protected]> | |
Rastko Ćirić <[email protected]> | ||
Rastko Ćirić <[email protected]> <[email protected]> | ||
Rastko Ćirić <[email protected]> <[email protected]> | ||
Raunak Jalan <[email protected]> | ||
Raunak Jalan <[email protected]> <[email protected]> | ||
Ross Markello <[email protected]> <[email protected]> | ||
Russell Poldrack <[email protected]> | ||
Russell Poldrack <[email protected]> | ||
|
@@ -175,6 +179,9 @@ Steven Giavasis <[email protected]> <[email protected] | |
Steven Giavasis <[email protected]> <[email protected]> | ||
Steven Tilley <[email protected]> <[email protected]> | ||
Sulantha Mathotaarachchi <[email protected]> | ||
Tim Robert-Fitzgerald <[email protected]> | ||
Tom Close <[email protected]> | ||
Tom Close <[email protected]> <[email protected]> | ||
Tristan Glatard <[email protected]> <[email protected]> | ||
Victor Férat <[email protected]> | ||
Victor Férat <[email protected]> <[email protected]> | ||
|
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
Oops, something went wrong.