Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ ModOpt

:Author: Samuel Farrens `(samuel.farrens@cea.fr) <samuel.farrens@cea.fr>`_

:Version: 1.4.2
:Version: 1.4.3

:Release Date: 14/02/2020
:Release Date: 30/04/2020

:Documentation: |link-to-docs|

Expand Down Expand Up @@ -65,13 +65,13 @@ Required Packages
In order to run the code in this repository the following packages must be
installed:

* |link-to-python| [Last tested with v3.7.0]
* |link-to-python| [Last tested with v3.8.2]

* |link-to-numpy| [Tested with v1.16.4]
* |link-to-numpy| [Tested with v1.18.3]

* |link-to-scipy| [Tested with v1.3.0]
* |link-to-scipy| [Tested with v1.4.1]

* |link-to-progressbar| [Tested with v3.42.0]
* |link-to-progressbar| [Tested with v3.51.1]

.. |link-to-python| raw:: html

Expand All @@ -98,13 +98,13 @@ Optional Packages

The following packages can optionally be installed to add extra functionality:

* |link-to-astropy| [Last tested with v3.2.1]
* |link-to-astropy| [Last tested with v4.0.1]

* |link-to-matplotlib| [Last tested with v3.1.1]
* |link-to-matplotlib| [Last tested with v3.2.1]

* |link-to-skimage| [Requires >=v0.16.0]
* |link-to-skimage| [Requires >=v0.16.2]

* |link-to-sklearn| [Requires >=v0.21.3]
* |link-to-sklearn| [Requires >=v0.22.2]

* |link-to-termcolor| [Last tested with v1.1.0]

Expand Down
20 changes: 10 additions & 10 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ ModOpt Documentation

:Author: Samuel Farrens `(samuel.farrens@cea.fr) <samuel.farrens@cea.fr>`_

:Version: 1.4.2
:Version: 1.4.3

:Release Date: 14/02/2020
:Release Date: 30/04/2020

:Documentation: |link-to-docs|

Expand Down Expand Up @@ -48,13 +48,13 @@ Required Packages
In order to run the code in this repository the following packages must be
installed:

* |link-to-python| [Last tested with v3.7.0]
* |link-to-python| [Last tested with v3.8.2]

* |link-to-numpy| [Tested with v1.16.4]
* |link-to-numpy| [Tested with v1.18.3]

* |link-to-scipy| [Tested with v1.3.0]
* |link-to-scipy| [Tested with v1.4.1]

* |link-to-progressbar| [Tested with v3.42.0]
* |link-to-progressbar| [Tested with v3.51.1]

.. |link-to-python| raw:: html

Expand All @@ -81,13 +81,13 @@ Optional Packages

The following packages can optionally be installed to add extra functionality:

* |link-to-astropy| [Last tested with v3.2.1]
* |link-to-astropy| [Last tested with v4.0.1]

* |link-to-matplotlib| [Last tested with v3.1.1]
* |link-to-matplotlib| [Last tested with v3.2.1]

* |link-to-skimage| [Requires >=v0.16.0]
* |link-to-skimage| [Requires >=v0.16.2]

* |link-to-sklearn| [Requires >=v0.21.3]
* |link-to-sklearn| [Requires >=v0.22.2]

* |link-to-termcolor| [Last tested with v1.1.0]

Expand Down
4 changes: 2 additions & 2 deletions modopt/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@

:Author: Samuel Farrens <samuel.farrens@cea.fr>

:Version: 1.4.2
:Version: 1.4.3

"""

# Package Version
version_info = (1, 4, 2)
version_info = (1, 4, 3)
__version__ = '.'.join(str(c) for c in version_info)

__about__ = ('ModOpt \n\n '
Expand Down