Skip to content

Commit

Permalink
Release 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
apdavison committed Jan 24, 2022
1 parent 68b15a6 commit 9d60f2c
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ lazyarray.egg-info/
test/__pycache__/
MANIFEST
dist/
doc/_build
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ matrix:
install:
- pip install "numpy==$NUMPY_VERSION" "scipy==$SCIPY_VERSION" coverage coveralls pytest pytest-cov
script:
- pytest --cov=lazyarray -v -x
- pytest --cov=lazyarray -v
after_success:
- coveralls
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2012-2020, Andrew P. Davison, Joël Chavas and Elodie Legouée (CNRS)
Copyright (c) 2012-2022, Andrew P. Davison, Joël Chavas, Elodie Legouée (CNRS) and Ankur Sinha (UCL)
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
6 changes: 6 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,12 @@ Release 0.5.1

* Fix problem where SciPy was required, not optional

Release 0.5.2
=============

* Add support for Python 3.10, remove testing for Python 3.4 and NumPy 1.12
* Switch from nose to pytest for running tests


.. _`#3`: https://bitbucket.org/apdavison/lazyarray/issue/3/
.. _`#4`: https://bitbucket.org/apdavison/lazyarray/issue/4/
Expand Down
11 changes: 6 additions & 5 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@

# General information about the project.
project = u'lazyarray'
copyright = u'2012-2021, Andrew P. Davison, Joël Chavas and Elodie Legouée (CNRS)'
contributors = 'Andrew P. Davison, Joël Chavas, Elodie Legouée (CNRS) and Ankur Sinha (UCL)'
copyright = f'2012-2022, {contributors}'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand All @@ -52,7 +53,7 @@
# The short X.Y version.
version = '0.5'
# The full version, including alpha/beta/rc tags.
release = '0.5.1'
release = '0.5.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -181,7 +182,7 @@
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'lazyarray.tex', u'Lazyarray Documentation',
u'Andrew P. Davison, Joël Chavas and Elodie Legouée', 'manual'),
contributors, 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down Expand Up @@ -222,9 +223,9 @@

# Bibliographic Dublin Core info.
epub_title = u'lazyarray'
epub_author = u'Andrew P. Davison, Joël Chavas and Elodie Legouée'
epub_author = contributors
epub_publisher = u'Andrew P. Davison'
epub_copyright = u'2012-2021, Andrew P. Davison, Joël Chavas and Elodie Legouée'
epub_copyright = copyright

# The language of the text. It defaults to the language option
# or en if the language is not set.
Expand Down
8 changes: 4 additions & 4 deletions doc/installation.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@ 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.5.1.tar.gz
https://pypi.python.org/packages/source/l/lazyarray/lazyarray-0.5.2.tar.gz

Then::

$ tar xzf lazyarray-0.5.1.tar.gz
$ cd lazyarray-0.5.1
$ tar xzf lazyarray-0.5.2.tar.gz
$ cd lazyarray-0.5.2
$ python setup.py install

or::

$ python3 setup.py install

depending on which version of Python you are using.
depending on what your Python interpreter is named.


Installing from source
Expand Down
6 changes: 3 additions & 3 deletions lazyarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
lazyarray is a Python package that provides a lazily-evaluated numerical array
class, ``larray``, based on and compatible with NumPy arrays.
Copyright Andrew P. Davison, Joël Chavas and Elodie Legouée (CNRS), 2012-2020
Copyright Andrew P. Davison, Joël Chavas, Elodie Legouée (CNRS) and Ankur Sinha, 2012-2022
"""

import numbers
Expand All @@ -28,8 +28,8 @@
from collections import Mapping
from collections import Iterator

__version__ = "0.5.1"

__version__ = "0.5.2"

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.1',
version='0.5.2',
py_modules=['lazyarray'],
license='Modified BSD',
author="Andrew P. Davison",
Expand Down

0 comments on commit 9d60f2c

Please sign in to comment.