Skip to content

Commit

Permalink
Merge branch 'dev' into enh/h5_file_setup
Browse files Browse the repository at this point in the history
  • Loading branch information
rly authored Jul 21, 2022
2 parents 3d93d42 + ef0a800 commit a9c6fbf
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/check_external_links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
schedule:
- cron: '0 5 * * *' # once per day at midnight ET
workflow_dispatch:

jobs:
check-external-links:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/run_all_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
push:
tags: # run only on new tags that follow semver
- '/^[0-9]+(\.[0-9]+)?(\.[0-9]+)?$/'
workflow_dispatch:

jobs:
run-all-tests:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/run_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- 'latest'
- 'latest-tmp'
pull_request:
workflow_dispatch:

jobs:
run-coverage:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/run_pynwb_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
schedule:
- cron: '0 5 * * *' # once per day at midnight ET
workflow_dispatch:

jobs:
run-tests:
Expand Down Expand Up @@ -32,9 +33,10 @@ jobs:
git clone https://github.com/NeurodataWithoutBorders/pynwb.git --recurse-submodules
cd pynwb
python -m pip install -r requirements-dev.txt -r requirements.txt
python -m pip install . # this will install a particular version of hdmf instead of the current one
# must install in editable mode for coverage to find sources
python -m pip install -e . # this will install a pinned version of hdmf instead of the current one
cd ..
python -m pip uninstall -y hdmf
python -m pip uninstall -y hdmf # uninstall the pinned version of hdmf
python -m pip install . # reinstall current branch of hdmf
python -m pip list
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# HDMF Changelog

## HDMF 3.3.3 (Upcoming)
## HDMF 3.4.0 (upcoming)

### Minor improvements
- Allow manual triggering of some GitHub Actions. @rly ([#744](https://github.com/hdmf-dev/hdmf/pull/744))
- Relax input validation of `HDF5IO` to allow for s3fs support. Existing arguments of `HDF5IO` are modified as follows: i) `mode` was given a default value of "r", ii) `path` was given a default value of `None`, and iii) `file` can now accept an `S3File` type argument. @bendichter ([#746](https://github.com/hdmf-dev/hdmf/pull/746))
- Added ability to create and get back handle to empty HDF5 dataset. @ajtritt (#747)

### Bug fixes
- Fixed PyNWB dev CI. @rly ([#749](https://github.com/hdmf-dev/hdmf/pull/749))

## HDMF 3.3.2 (June 27, 2022)

### Bug fixes
Expand Down

0 comments on commit a9c6fbf

Please sign in to comment.