Skip to content

Commit

Permalink
update copyright date and version number
Browse files Browse the repository at this point in the history
  • Loading branch information
apdavison committed Sep 5, 2024
1 parent 9fd1afa commit 4fc72ab
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2012-2022, Andrew P. Davison, Joël Chavas, Elodie Legouée (CNRS) and Ankur Sinha (UCL)
Copyright (c) 2012-2024, 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
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
# General information about the project.
project = u'lazyarray'
contributors = 'Andrew P. Davison, Joël Chavas, Elodie Legouée (CNRS) and Ankur Sinha (UCL)'
copyright = f'2012-2022, {contributors}'
copyright = f'2012-2024, {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 @@ -53,7 +53,7 @@
# The short X.Y version.
version = '0.5'
# The full version, including alpha/beta/rc tags.
release = '0.5.2'
release = '0.6.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 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, Elodie Legouée (CNRS) and Ankur Sinha, 2012-2022
Copyright Andrew P. Davison, Joël Chavas, Elodie Legouée (CNRS) and Ankur Sinha, 2012-2024
"""

import numbers
Expand All @@ -29,7 +29,7 @@
from collections import Iterator


__version__ = "0.5.2"
__version__ = "0.6.0"

logger = logging.getLogger("lazyarray")

Expand Down
2 changes: 1 addition & 1 deletion test/test_lazyarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
Unit tests for ``larray`` class
Copyright Andrew P. Davison, Joël Chavas, Elodie Legouée (CNRS) and Ankur Sinha (UCL), 2012-2022
Copyright Andrew P. Davison, Joël Chavas, Elodie Legouée (CNRS) and Ankur Sinha (UCL), 2012-2024
"""

from lazyarray import larray, VectorizedIterable, sqrt, partial_shape
Expand Down
2 changes: 1 addition & 1 deletion test/test_ufunc.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Unit tests for ``larray``-compatible ufuncs
Copyright Andrew P. Davison, 2012-2022
Copyright Andrew P. Davison, 2012-2024
"""

from lazyarray import larray, sqrt, cos, power, fmod
Expand Down

0 comments on commit 4fc72ab

Please sign in to comment.