Skip to content

Commit

Permalink
Release 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
drasmuss committed Oct 11, 2017
1 parent 5569f72 commit 7a6a6e7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Release History
- Removed
- Fixed
0.5.2 (unreleased)
------------------
0.5.2 (October 11, 2017)
------------------------

**Added**

Expand Down
4 changes: 2 additions & 2 deletions nengo_dl/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@

name = "nengo_dl"
version_info = (0, 5, 2) # (major, minor, patch)
dev = True
dev = False

version = "{v}{dev}".format(v='.'.join(str(v) for v in version_info),
dev='.dev0' if dev else '')

# check nengo version
minimum_nengo_version = (2, 5, 0)
latest_nengo_version = (2, 6, 1)
latest_nengo_version = (2, 6, 0)
if nengo_version < minimum_nengo_version: # pragma: no cover
raise ValueError(
"`nengo_dl` does not support `nengo` version %s. Upgrade "
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ignore = C901, E721

[tool:pytest]
addopts = -p nengo.tests.options --simulator nengo_dl.tests.Simulator --ref-simulator nengo_dl.tests.Simulator --disable-warnings
testpaths = tests
testpaths = nengo_dl/tests
filterwarnings = always

[coverage:run]
Expand Down

0 comments on commit 7a6a6e7

Please sign in to comment.