Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
apdavison committed Nov 9, 2021
1 parent 3c32df4 commit 8a62c1f
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,14 @@ Release 0.4.0
=============

* Drop support for Python 2.7
* Added a more general way to specify that an array-like object should be treated as a scalar by lazyarray (for arrays of arrays, etc.)

Release 0.5.0
=============

* Add partial support for NumPy ufuncs that require two arguments, e.g. "power".
The second argument must be a scalar, array-valued second args are not yet supported.


.. _`#3`: https://bitbucket.org/apdavison/lazyarray/issue/3/
.. _`#4`: https://bitbucket.org/apdavison/lazyarray/issue/4/
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@
# built documents.
#
# The short X.Y version.
version = '0.4'
version = '0.5'
# The full version, including alpha/beta/rc tags.
release = '0.4.0'
release = '0.5.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
8 changes: 4 additions & 4 deletions doc/installation.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Dependencies

* Python >= 3.4
* numpy_ >= 1.12
* (optional) scipy_ >= 0.14
* (optional) scipy_ >= 0.17

Installing from the Python Package Index
========================================
Expand All @@ -21,12 +21,12 @@ to have administrator privileges on the machine you are installing on).

To download and install manually, download:

https://pypi.python.org/packages/source/l/lazyarray/lazyarray-0.4.0.tar.gz
https://pypi.python.org/packages/source/l/lazyarray/lazyarray-0.5.0.tar.gz

Then::

$ tar xzf lazyarray-0.4.0.tar.gz
$ cd lazyarray-0.4.0
$ tar xzf lazyarray-0.5.0.tar.gz
$ cd lazyarray-0.5.0
$ python setup.py install

or::
Expand Down
2 changes: 1 addition & 1 deletion lazyarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
have_scipy = False


__version__ = "0.4.0"
__version__ = "0.5.0"

logger = logging.getLogger("lazyarray")

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='lazyarray',
version='0.5.0.dev',
version='0.5.0',
py_modules=['lazyarray'],
license='Modified BSD',
author="Andrew P. Davison",
Expand Down

0 comments on commit 8a62c1f

Please sign in to comment.