Skip to content

Commit 2a2e7ff

Browse files
authored
Minor project updates (#2040)
* add hdmf upper bound * use tox isolated build * update tox minimum in conda build * update CHANGELOG
1 parent 9d7bad1 commit 2a2e7ff

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/run_all_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ jobs:
167167
run: |
168168
conda config --set always_yes yes --set changeps1 no
169169
conda info
170-
conda install -c conda-forge tox
170+
conda install -c conda-forge "tox>=4.0"
171171
172172
- name: Conda reporting
173173
run: |

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PyNWB Changelog
22

3-
## PyNWB 3.0.0 (February 25, 2025)
3+
## PyNWB 3.0.0 (February 26, 2025)
44

55
### Breaking changes
66
- The validation methods have been updated with multiple breaking changes. @stephprince [#1911](https://github.com/NeurodataWithoutBorders/pynwb/pull/1911)
@@ -34,6 +34,7 @@
3434
### Enhancements and minor changes
3535
- Added `__all__` to modules. @bendichter [#2021](https://github.com/NeurodataWithoutBorders/pynwb/pull/2021)
3636
- Added `pynwb.read_nwb` convenience method to simplify reading an NWBFile written with any backend @h-mayorquin [#1994](https://github.com/NeurodataWithoutBorders/pynwb/pull/1994)
37+
- Constrained `hdmf<5` to prevent future compatibility issues. [#2040](https://github.com/NeurodataWithoutBorders/pynwb/pull/2040)
3738

3839
### Bug fixes
3940
- Made distance, orientation, and field_of_view optional in OpticalSeries to match schema @bendichter [#2023](https://github.com/NeurodataWithoutBorders/pynwb/pull/2023)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ classifiers = [
3434
]
3535
dependencies = [
3636
"h5py>=3.2.0",
37-
"hdmf>=3.14.5",
37+
"hdmf>=3.14.5,<5",
3838
"numpy>=1.24.0",
3939
"pandas>=1.2.0",
4040
"python-dateutil>=2.8.2",

0 commit comments

Comments
 (0)