Skip to content

Commit

Permalink
Merge branch 'dev' into update/citingpynwb
Browse files Browse the repository at this point in the history
  • Loading branch information
oruebel authored Dec 12, 2022
2 parents 096bad3 + 734b88b commit 8ce07ea
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### Enhancements and minor changes
- `Subject.age` can be input as a `timedelta`. @bendichter [#1590](https://github.com/NeurodataWithoutBorders/pynwb/pull/1590)
- Add module `pynwb.testing.mock.icephys` and corresponding tests. @bendichter
- Add module `pynwb.testing.mock.icephys` and corresponding tests. @bendichter
[1595](https://github.com/NeurodataWithoutBorders/pynwb/pull/1595)
- Remove redundant object mapper code. @rly [#1600](https://github.com/NeurodataWithoutBorders/pynwb/pull/1600)
- Fix pending deprecations and issues in CI. @rly [#1594](https://github.com/NeurodataWithoutBorders/pynwb/pull/1594)
Expand All @@ -19,12 +19,14 @@
[#1591](https://github.com/NeurodataWithoutBorders/pynwb/pull/1591)
- Update citation for PyNWB in docs and duecredit to use the eLife NWB paper. @oruebel [#1604](https://github.com/NeurodataWithoutBorders/pynwb/pull/1604)
- Fix docs build warnings due to use of hardcoded links. @oruebel [#1604](https://github.com/NeurodataWithoutBorders/pynwb/pull/1604)

### Bug fixes
- Add shape constraint to `PatchClampSeries.data`. @bendichter
- Add shape constraint to `PatchClampSeries.data`. @bendichter
[#1596](https://github.com/NeurodataWithoutBorders/pynwb/pull/1596)
- Update the [images tutorial](https://pynwb.readthedocs.io/en/stable/tutorials/domain/images.html) to provide example usage of an ``IndexSeries``
with a reference to ``Images``. @bendichter [#1602](https://github.com/NeurodataWithoutBorders/pynwb/pull/1602)
- Fixed an issue with the `tox` tool when upgrading to tox 4. @rly [#1608](https://github.com/NeurodataWithoutBorders/pynwb/pull/1608)

## PyNWB 2.2.0 (October 19, 2022)

### Enhancements and minor changes
Expand Down
10 changes: 5 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ commands =
[testenv:py310-optional]
basepython = python3.10
install_command =
python -m pip install -e . {opts} {packages}
python -m pip install {opts} {packages}
deps =
-rrequirements-dev.txt
; -rrequirements-opt.txt
Expand All @@ -45,7 +45,7 @@ commands = {[testenv]commands}
[testenv:py310-upgraded]
basepython = python3.10
install_command =
python -m pip install -U -e . {opts} {packages}
python -m pip install -U {opts} {packages}
deps =
-rrequirements-dev.txt
; -rrequirements-opt.txt
Expand All @@ -55,7 +55,7 @@ commands = {[testenv]commands}
[testenv:py310-prerelease]
basepython = python3.10
install_command =
python -m pip install -U --pre -e . {opts} {packages}
python -m pip install -U --pre {opts} {packages}
deps =
-rrequirements-dev.txt
; -rrequirements-opt.txt
Expand Down Expand Up @@ -101,7 +101,7 @@ commands = {[testenv:build]commands}
[testenv:build-py310-upgraded]
basepython = python3.10
install_command =
python -m pip install -U -e . {opts} {packages}
python -m pip install -U {opts} {packages}
deps =
-rrequirements-dev.txt
; -rrequirements-opt.txt
Expand All @@ -110,7 +110,7 @@ commands = {[testenv:build]commands}
[testenv:build-py310-prerelease]
basepython = python3.10
install_command =
python -m pip install -U --pre -e . {opts} {packages}
python -m pip install -U --pre {opts} {packages}
deps =
-rrequirements-dev.txt
; -rrequirements-opt.txt
Expand Down

0 comments on commit 8ce07ea

Please sign in to comment.