Skip to content

Commit

Permalink
Release version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hunse committed Jun 6, 2016
1 parent 6de4f06 commit af26f8a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 14 deletions.
7 changes: 4 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ Release History
- Bugfixes
- Documentation
1.0.0 (unreleased)
==================
1.0.0 (June 6, 2016)
====================

Release in support of Nengo 2.1.0.
Release in support of Nengo 2.1.0. Since Nengo no longer supports Python 2.6,
we now support Python 2.7+ and 3.3+.

**Features**

Expand Down
12 changes: 3 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,17 +73,9 @@ Developer Installation
----------------------

First, ``pip install nengo``.
For best performance, make sure a fast version of Numpy is installed
For best performance, first make sure a fast version of Numpy is installed
by following the instructions in the
`Nengo README <http://github.com/nengo/nengo/blob/master/README.rst>`_.
Currently, ``nengo_ocl`` is compatible with Nengo 2.0.x,
supporting most features.

Once Nengo is installed, install the remaining dependencies:

.. code-block:: bash
pip install networkx mako pyopencl

This repository can then be installed with:

Expand All @@ -95,6 +87,8 @@ This repository can then be installed with:
If you’re using a ``virtualenv`` (recommended!)
then you can omit the ``--user`` flag.
Check the output to make sure everything installed correctly.
Some dependencies (e.g. ``pyopencl``) may require manual installation.

Installing OpenCL
=================
Expand Down
2 changes: 1 addition & 1 deletion nengo_ocl/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# --- version of this release
name = "nengo_ocl"
version_info = (1, 0, 0) # (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 '')

Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[check-manifest]
ignore =
.travis.yml
.coveragerc
.mention-bot
.travis.yml
tox.ini
*.ipynb_checkpoints
*.ipynb_checkpoints/*
Expand Down

0 comments on commit af26f8a

Please sign in to comment.