Skip to content

Commit

Permalink
Merge pull request #25 from nipreps/fix/adopt-pep517-8-build
Browse files Browse the repository at this point in the history
MAINT: Update circle build to PEP517/8
  • Loading branch information
oesteban authored Aug 20, 2024
2 parents 02001f0 + 079476b commit 459527e
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ jobs:
command: |
python3 -m venv /tmp/install_sdist
source /tmp/install_sdist/bin/activate
python -m pip install -U build hatch pip twine
THISVERSION=$( python -m hatch version | tail -n1 | xargs )
THISVERSION=${CIRCLE_TAG:-$THISVERSION}
Expand All @@ -46,6 +47,7 @@ jobs:
command: |
python3 -m venv /tmp/install_wheel
source /tmp/install_wheel/bin/activate
python -m pip install -U build hatch pip twine
THISVERSION=$( python -m hatch version | tail -n1 | xargs )
THISVERSION=${CIRCLE_TAG:-$THISVERSION}
Expand Down Expand Up @@ -79,11 +81,6 @@ workflows:
- test_package:
context:
- nipreps-common
filters:
branches:
ignore: /.*/
tags:
only: /.*/

- deploy_pypi:
context:
Expand Down

0 comments on commit 459527e

Please sign in to comment.