File tree Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ jobs:
246246
247247 test-validation :
248248 docker :
249- - image : circleci/python:3.8.1-buster
249+ - image : circleci/python:3.7.6-stretch
250250 steps :
251251 - checkout
252252 - run : git submodule sync
@@ -258,7 +258,7 @@ jobs:
258258 command : |
259259 . ../venv/bin/activate
260260 pip install tox
261- tox -e validation-py38
261+ tox -e validation-py37
262262 # Install is expected to be quick. Increase timeout in case there are some network issues.
263263 # While pip installing tox does not output by default. Circle thinks task is dead after 10 min.
264264 no_output_timeout : 30m
Original file line number Diff line number Diff line change 11# PyNWB Changelog
22
3+ ## PyNWB 1.4.0 (August 10, 2020)
4+
5+ ### Internal improvements:
6+ - Update requirements to use HDMF 2.0.1. @rly (#1256 )
7+ - Start FAQ section in documentation. @rly (#1249 )
8+ - Improve deprecation warnings. @rly (#1261 )
9+ - Update CI to test Python 3.8, update requirements. @rly (#1267 , #1275 )
10+
11+ ### Bug fixes:
12+ - For ` ImageSeries ` , add check if ` external_file ` is provided without ` starting_frame ` in ` __init__ ` . @rly (#1264 )
13+ - Improve docstrings for ` TimeSeries.data ` and for the electrode table. @rly (#1271 , #1272 )
14+
315## PyNWB 1.3.3 (June 26, 2020)
416
517### Internal improvements:
Original file line number Diff line number Diff line change @@ -130,8 +130,8 @@ deps =
130130 -rrequirements-doc.txt
131131commands = {[testenv:gallery]commands}
132132
133- [testenv:validation-py38 ]
134- basepython = python3.8
133+ [testenv:validation-py37 ]
134+ basepython = python3.7
135135install_command =
136136 pip install -U {opts} {packages}
137137deps =
You can’t perform that action at this time.
0 commit comments