Skip to content

Commit

Permalink
Release v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tbekolay committed Jan 27, 2022
1 parent f0c084a commit b2d60c3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .nengobones.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,4 +275,4 @@ version_py:
major: 3
minor: 2
patch: 0
release: false
release: true
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Release history
- Removed
- Fixed
3.2.0 (unreleased)
==================
3.2.0 (January 27, 2022)
========================

**Added**

Expand Down
6 changes: 5 additions & 1 deletion nengo/builder/tests/test_transforms_conv.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,9 @@ def test_convtransposeinc_2d(
assert conv_transpose_output.shape == conv_output.shape

success = allclose(conv_transpose_output, conv_output)
if not success:
if success:
plt.saveas = None
else:
debug_convtransposeinc_2d(w, wt, x, xt, y, yt, conv, conv_transpose, plt)
assert success

Expand Down Expand Up @@ -278,6 +280,8 @@ def test_conv2d_gradx(padding, stride, k_size, x_size, rng, plt, allclose):
plt.imshow(y_np[..., 0], vmin=y_tf.min(), vmax=y_tf.max())
bad_sizes.append(y_size)

if len(bad_sizes) == 0:
plt.saveas = None
assert len(bad_sizes) == 0, (y_min, y_max, bad_sizes)


Expand Down
2 changes: 1 addition & 1 deletion nengo/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
version_info = (3, 2, 0)

name = "nengo"
dev = 0
dev = None

# use old string formatting, so that this can still run in Python <= 3.5
# (since this file is parsed in setup.py, before python_requires is applied)
Expand Down

0 comments on commit b2d60c3

Please sign in to comment.