Skip to content

Commit

Permalink
Release v0.9.2
Browse files Browse the repository at this point in the history
Signed-off-by: The Sionna Team <sionna@nvidia.com>
  • Loading branch information
gmarcusm committed Jun 24, 2022
1 parent 488e6c3 commit df79049
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ In order to run the tutorial notebooks on your machine, you also need [Jupyter](
You can alternatively test them on [Google Colab](https://colab.research.google.com/).
Although not necessary, we recommend running Sionna in a [Docker container](https://www.docker.com).

Sionna requires [TensorFlow 2.5 or higher](https://www.tensorflow.org/install) and Python 3.6-3.9. We recommend Ubuntu 20.04.
Sionna requires [TensorFlow 2.6-2.8](https://www.tensorflow.org/install) and Python 3.6-3.9. We recommend Ubuntu 20.04.

We refer to the [TensorFlow GPU support tutorial](https://www.tensorflow.org/install/gpu) for GPU support and the required driver setup.

Expand All @@ -35,7 +35,7 @@ On macOS, you need to install [tensorflow-macos](https://github.com/apple/tensor
```
>>> import sionna
>>> print(sionna.__version__)
0.9.1
0.9.2
```

3.) Once Sionna is installed, you can run the [Sionna "Hello, World!" example](https://nvlabs.github.io/sionna/examples/Hello_World.html), have a look at the [quick start guide](https://nvlabs.github.io/sionna/quickstart.html), or at the [tutorials](https://nvlabs.github.io/sionna/tutorials.html).
Expand Down
4 changes: 2 additions & 2 deletions doc/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ e.g., using `conda <https://docs.conda.io>`_. On macOS, you need to install `ten
>>> import sionna
>>> print(sionna.__version__)
0.9.1
0.9.2
3.) Once Sionna is installed, you can run the `Sionna "Hello, World!" example <https://nvlabs.github.io/sionna/examples/Hello_World.html>`_, have a look at the `quick start guide <https://nvlabs.github.io/sionna/quickstart.html>`_, or at the `tutorials <https://nvlabs.github.io/sionna/tutorials.html>`_.

Expand Down Expand Up @@ -109,4 +109,4 @@ e.g., using `conda <https://docs.conda.io>`_.
>>> import sionna
>>> print(sionna.__version__)
0.9.1
0.9.2
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tensorflow>=2.5, <=2.8 ; sys_platform != "darwin"
tensorflow-macos >= 2.5, <= 2.8 ; sys_platform == "darwin"
tensorflow >=2.6.4, !=2.7.0, !=2.7.1, !=2.8.0, >=2.8.1, <2.9 ; sys_platform != "darwin"
tensorflow-macos >= 2.6, < 2.9 ; sys_platform == "darwin"
numpy
scipy
matplotlib
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ include_package_data = True
python_requires = >=3.6

install_requires =
tensorflow >= 2.5, <= 2.8 ; sys_platform != "darwin"
tensorflow-macos >= 2.5, <= 2.8 ; sys_platform == "darwin"
tensorflow >=2.6.4, !=2.7.0, !=2.7.1, !=2.8.0, >=2.8.1, <2.9 ; sys_platform != "darwin"
tensorflow-macos >= 2.6, < 2.9 ; sys_platform == "darwin"
numpy
matplotlib
scipy
Expand Down
2 changes: 1 addition & 1 deletion sionna/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""This is the Sionna library.
"""

__version__ = '0.9.1'
__version__ = '0.9.2'

from . import utils
from .constants import *
Expand Down

0 comments on commit df79049

Please sign in to comment.