Skip to content

Commit 0e6f55d

Browse files
authored
Make validation CI run on Python 3.7 again (#1275)
1 parent 5ede9ed commit 0e6f55d

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
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:

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ deps =
130130
-rrequirements-doc.txt
131131
commands = {[testenv:gallery]commands}
132132

133-
[testenv:validation-py38]
134-
basepython = python3.8
133+
[testenv:validation-py37]
134+
basepython = python3.7
135135
install_command =
136136
pip install -U {opts} {packages}
137137
deps =

0 commit comments

Comments
 (0)