Skip to content

Commit

Permalink
Fix upload to PyPI (#699)
Browse files Browse the repository at this point in the history
* Fix upload to PyPI

* Fix changelog
  • Loading branch information
rly authored Feb 23, 2022
1 parent 93b068c commit 18bb897
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@ jobs:
- TEST_TOX_ENV: "py39"
- BUILD_TOX_ENV: "build-py39"
- TEST_WHEELINSTALL_ENV: "wheelinstall"
- UPLOAD_WHEELS: "true" # upload distributions from only this job to pypi
<<: *ci-steps

python310:
Expand All @@ -202,7 +201,6 @@ jobs:
- TEST_TOX_ENV: "py310"
- BUILD_TOX_ENV: "build-py310"
- TEST_WHEELINSTALL_ENV: "wheelinstall"
- UPLOAD_WHEELS: "true" # upload distributions from only this job to pypi
<<: *ci-steps

python310-opt:
Expand All @@ -219,6 +217,7 @@ jobs:
- TEST_TOX_ENV: "py310-upgrade-dev"
- BUILD_TOX_ENV: "build-py310-upgrade-dev"
- TEST_WHEELINSTALL_ENV: "wheelinstall"
- UPLOAD_WHEELS: "true" # keep distributions from this job for upload to PyPI
<<: *ci-steps

python310-upgrade-dev-pre:
Expand Down Expand Up @@ -415,7 +414,7 @@ workflows:
requires:
- flake8
- python37-min-req
- python310-upgrade-dev
- python310-upgrade-dev # distributions from this job uploaded to PyPI
- miniconda37
- miniconda310
- gallery37-min-req
Expand All @@ -434,14 +433,15 @@ workflows:
requires:
- flake8
- python37-min-req
- python310-upgrade-dev
- python310-upgrade-dev # distributions from this job uploaded to PyPI
- miniconda37
- miniconda310
- gallery37-min-req
- gallery310
filters:
# run only on new tags that follow semver
tags:
only: /^[0-9]+(\.[0-9]+)*(\.post[0-9]+)?$/
only: /^[0-9]+(\.[0-9]+)?(\.[0-9]+)?$/
branches:
ignore: /.*/
context:
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# HDMF Changelog

## HDMF 3.2 (February 22, 2022)
## HDMF 3.2.1 (February 22, 2022)

### Bug fixes
- Fixed release CI that prevented distribution from being uploaded to PyPI. @rly (#699)

## HDMF 3.2.0 (February 22, 2022)

### New features
- Added ``hdmf.container.Row.__str__`` to improve print of rows. @oruebel (#667)
Expand Down

0 comments on commit 18bb897

Please sign in to comment.