Skip to content

Commit

Permalink
Merge pull request #375 from f0k/first-release
Browse files Browse the repository at this point in the history
Prepare for first release
  • Loading branch information
f0k committed Aug 13, 2015
2 parents 102203f + 0f297ed commit d337c8a
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 9 deletions.
35 changes: 35 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
Changelog
---------

0.1 (2015-08-13)
~~~~~~~~~~~~~~~~

First release.

* core contributors, in alphabetical order:

* Eric Battenberg (@ebattenberg)
* Sander Dieleman (@benanne)
* Daniel Nouri (@dnouri)
* Eben Olson (@ebenolson)
* Aäron van den Oord (@avdnoord)
* Colin Raffel (@craffel)
* Jan Schlüter (@f0k)
* Søren Kaae Sønderby (@skaae)

* extra contributors, in chronological order:

* Daniel Maturana (@dimatura): documentation, cuDNN layers, LRN
* Jonas Degrave (@317070): get_all_param_values() fix
* Jack Kelly (@JackKelly): help with recurrent layers
* Gábor Takács (@takacsg84): support broadcastable parameters in lasagne.updates
* Diogo Moitinho de Almeida (@diogo149): MNIST example fixes
* Brian McFee (@bmcfee): MaxPool2DLayer fix
* Martin Thoma (@MartinThoma): documentation
* Jeffrey De Fauw (@JeffreyDF): documentation, ADAM fix
* Michael Heilman (@mheilman): NonlinearityLayer, lasagne.random
* Gregory Sanders (@instagibbs): documentation fix
* Jon Crall (@erotemic): check for non-positive input shapes
* Hendrik Weideman (@hjweide): set_all_param_values() test, MaxPool2DCCLayer fix
* Kashif Rasul (@kashif): ADAM simplification
* Peter de Rivaz (@peterderivaz): documentation fix
11 changes: 11 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
include *.rst
include *.txt
include LICENSE

recursive-include lasagne/tests *.py
include .coveragerc
recursive-include examples *.py
recursive-include docs *.rst conf.py *.css Makefile

recursive-exclude * __pycache__
recursive-exclude * *.py[co]
5 changes: 1 addition & 4 deletions docs/user/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,12 @@ be handled below.
Stable Lasagne release
======================

.. note:: Lasagne hasn't been released yet. Please see the next section for
how to install the bleeding-edge version instead.

Lasagne 0.1 requires a more recent version of Theano than the one available
on PyPI. To install a version that is known to work, run the following command:

.. code-block:: bash
pip install -r https://raw.githubusercontent.com/Lasagne/Lasagne/0.1/requirements.txt
pip install -r https://raw.githubusercontent.com/Lasagne/Lasagne/v0.1/requirements.txt
.. warning::
An even more recent version of Theano will often work as well, but at the
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
git+https://github.com/Theano/Theano.git@36d1eca8#egg=Theano==0.8.git
git+https://github.com/Theano/Theano.git@15c90dd3#egg=Theano==0.8.git
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@
from setuptools import find_packages
from setuptools import setup

version = '0.1.dev'
version = '0.1'

here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = ''
# CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
except IOError:
README = CHANGES = ''

Expand Down Expand Up @@ -46,7 +45,7 @@
url="https://github.com/Lasagne/Lasagne",
license="MIT",
packages=find_packages(),
include_package_data=True,
include_package_data=False,
zip_safe=False,
install_requires=install_requires,
extras_require={
Expand Down

0 comments on commit d337c8a

Please sign in to comment.