-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use latest HDMF, raise min pandas, dissociate req-min and setup reqs (#…
- Loading branch information
Showing
8 changed files
with
44 additions
and
30 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 |
---|---|---|
@@ -1,20 +1,26 @@ | ||
Prepare for release of PyNWB [version] | ||
|
||
### Before merging: | ||
- [ ] Minor releases: Update package versions in `requirements.txt`, `requirements-dev.txt`, `requirements-doc.txt`, `requirements-min.txt` as needed. See https://requires.io/github/NeurodataWithoutBorders/pynwb/requirements/?branch=dev | ||
- [ ] Check legal file dates and information in `Legal.txt`, `license.txt`, `README.rst`, `docs/source/conf.py`, and any other locations as needed | ||
- [ ] Major and minor releases: Update package versions in `requirements.txt`, `requirements-dev.txt`, | ||
`requirements-doc.txt`, `requirements-min.txt`, `setup.py` as needed | ||
See https://requires.io/github/NeurodataWithoutBorders/pynwb/requirements/?branch=dev | ||
- [ ] Check legal file dates and information in `Legal.txt`, `license.txt`, `README.rst`, `docs/source/conf.py`, | ||
and any other locations as needed | ||
- [ ] Update `setup.py` as needed | ||
- [ ] Update `README.rst` as needed | ||
- [ ] Update `src/pynwb/nwb-schema` submodule as needed. Check the version number manually. | ||
- [ ] Update `src/pynwb/nwb-schema` submodule as needed. Check the version number and commit SHA manually | ||
- [ ] Update changelog (set release date) in `CHANGELOG.md` and any other docs as needed | ||
- [ ] Run tests locally including gallery tests and validation tests, and inspect all warnings and outputs (`python test.py -v > out.txt`) | ||
- [ ] Run tests locally including gallery tests and validation tests, and inspect all warnings and outputs | ||
(`python test.py -v > out.txt`) | ||
- [ ] Test docs locally (`make apidoc`, `make html`) | ||
- [ ] Push changes to this PR and make sure all PRs to be included in this release have been merged | ||
- [ ] Check that the readthedocs build for this PR succeeds (build latest to pull the new branch, then activate and | ||
build docs for new branch): https://readthedocs.org/projects/pynwb/builds/ | ||
|
||
### After merging: | ||
1. Create release by following steps in `docs/source/make_a_release.rst` or use alias `git pypi-release [tag]` if set up | ||
2. After the CI bot creates the new release (wait ~10 min), update the release notes on the [GitHub releases page](https://github.com/NeurodataWithoutBorders/pynwb/releases) with the changelog | ||
2. After the CI bot creates the new release (wait ~10 min), update the release notes on the | ||
[GitHub releases page](https://github.com/NeurodataWithoutBorders/pynwb/releases) with the changelog | ||
3. Check that the readthedocs "latest" and "stable" builds run and succeed | ||
4. Update [conda-forge/pynwb-feedstock](https://github.com/conda-forge/pynwb-feedstock) | ||
4. Update [conda-forge/pynwb-feedstock](https://github.com/conda-forge/pynwb-feedstock) with the latest version number | ||
and SHA256 retrieved from PyPI > PyNWB > Download Files > View hashes for the `.tar.gz` file. Re-render as needed |
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
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 |
---|---|---|
@@ -1,8 +1,7 @@ | ||
# package dependencies and their minimum versions for installing PyNWB | ||
# the requirements here specify '==' for testing; setup.py replaces '==' with '>=' | ||
h5py==2.9,<3 # support for setting attrs to lists of utf-8 added in 2.9 | ||
hdmf==2.5.5,<3 | ||
numpy==1.16,<1.21 | ||
pandas==0.23,<2 | ||
python-dateutil==2.7,<3 | ||
# minimum versions of package dependencies for installing PyNWB | ||
h5py==2.9 # support for setting attrs to lists of utf-8 added in 2.9 | ||
hdmf==2.5.6 | ||
numpy==1.16 | ||
pandas==1.0.5 | ||
python-dateutil==2.7 | ||
setuptools |
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