Skip to content

Commit

Permalink
Release version 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tbekolay committed Apr 18, 2017
1 parent 0eb77e6 commit 4737c24
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
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
2.3.2 (unreleased)
==================
2.4.0 (April 18, 2017)
======================

**Added**

Expand Down
3 changes: 1 addition & 2 deletions examples/basic/many_neurons.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@
"from nengo.utils.matplotlib import rasterplot\n",
"\n",
"indices = sorted_neurons(A, sim, iterations=250)\n",
"rasterplot(sim.trange(), sim.data[A_spikes][:, indices])\n",
"plt.figure()\n",
"rasterplot(sim.trange(), sim.data[A_spikes][:, indices])\n",
"plt.xlim(0, 1);"
],
"language": "python",
Expand All @@ -197,4 +197,3 @@
}
]
}

2 changes: 1 addition & 1 deletion nengo/builder/tests/test_optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def test_sigmerger_merge_views():


@pytest.mark.parametrize("net", (thalamus_net, learning_net))
def test_optimizer_does_not_change_result(plt, seed, net):
def test_optimizer_does_not_change_result(seed, net):
model = net()
model.seed = seed

Expand Down
4 changes: 2 additions & 2 deletions nengo/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"""

name = "nengo"
version_info = (2, 3, 2) # (major, minor, patch)
dev = 0
version_info = (2, 4, 0) # (major, minor, patch)
dev = None

version = "{v}{dev}".format(v='.'.join(str(v) for v in version_info),
dev=('.dev%d' % dev) if dev is not None else '')

0 comments on commit 4737c24

Please sign in to comment.