Skip to content

Commit

Permalink
Release v0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
drasmuss committed Nov 24, 2020
1 parent 35e90ae commit ae12dae
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
10 changes: 7 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,21 @@ Release History
- Bugfixes
- Documentation
0.4.7 (unreleased)
==================
0.4.7 (November 24, 2020)
=========================

*Compatible with Nengo 2.6.0 - 3.0.0*

- Bugfix: Restrict Nengo version to <=3.0.0.

0.4.6 (March 3, 2020)
=====================

*Compatible with Nengo 2.6.0 - 3.0.0*

- Bugfix: Fix examples for nengo 3.0 (those examples now require nengo>=2.6)
- Bugfix: Failure when opening browser from script


0.4.5 (November 19, 2019)
=========================

Expand Down
2 changes: 1 addition & 1 deletion nengo_gui/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

name = "nengo_gui"
version_info = (0, 4, 7) # (major, minor, patch)
dev = 0
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 '')
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def read(*filenames, **kwargs):
]
},
install_requires=[
"nengo<=3.0.0",
"nengo>=2.6.0,<=3.0.0",
],
tests_require=[
"pytest",
Expand Down

0 comments on commit ae12dae

Please sign in to comment.