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
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ include develop.txt
include docs/requirements.txt
include README.rst
include LICENSE.txt
include docs/source/modopt_logo.png
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ Note that none of these are required for running on a CPU.

* [CuPy](https://cupy.dev/)
* [Torch](https://pytorch.org/)
* [TensorFlow](https://www.tensorflow.org/)

## Citation

Expand Down
6 changes: 6 additions & 0 deletions docs/source/dependencies.rst
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ For GPU compliance the following packages can also be installed:

* |link-to-cupy|
* |link-to-torch|
* |link-to-tf|

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

Expand All @@ -93,6 +94,11 @@ For GPU compliance the following packages can also be installed:
<a href="https://pytorch.org/"
target="_blank">Torch</a>

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

<a href="https://www.tensorflow.org/"
target="_blank">TensorFlow</a>

.. note::

Note that none of these are required for running on a CPU.
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ ModOpt Documentation
.. include:: toc.rst

:Author: Samuel Farrens `(samuel.farrens@cea.fr) <samuel.farrens@cea.fr>`_
:Version: 1.5.0
:Release Date: 31/03/2021
:Version: 1.5.1
:Release Date: 22/04/2021
:Repository: |link-to-repo|

.. |link-to-repo| raw:: html
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Set the package release version
major = 1
minor = 5
patch = 0
patch = 1

# Set the package details
name = 'modopt'
Expand All @@ -29,9 +29,10 @@
os_str = 'Operating System :: {0}'

classifiers = (
[lc_str.format(license)] + [ln_str] +
[py_str.format(ver) for ver in python_versions_supported] +
[os_str.format(ops) for ops in os_platforms_supported]
[lc_str.format(license)]
+ [ln_str]
+ [py_str.format(ver) for ver in python_versions_supported]
+ [os_str.format(ops) for ops in os_platforms_supported]
)

# Source package description from README.md
Expand Down