From df79049682436754fcf5e8e74c76578cc212a061 Mon Sep 17 00:00:00 2001 From: Guillermo Marcus Date: Fri, 24 Jun 2022 18:23:06 +0200 Subject: [PATCH] Release v0.9.2 Signed-off-by: The Sionna Team --- README.md | 4 ++-- doc/source/installation.rst | 4 ++-- requirements.txt | 4 ++-- setup.cfg | 4 ++-- sionna/__init__.py | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index a188181b0..556011bdd 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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). diff --git a/doc/source/installation.rst b/doc/source/installation.rst index 2240e94ef..97837deed 100644 --- a/doc/source/installation.rst +++ b/doc/source/installation.rst @@ -37,7 +37,7 @@ e.g., using `conda `_. 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 `_, have a look at the `quick start guide `_, or at the `tutorials `_. @@ -109,4 +109,4 @@ e.g., using `conda `_. >>> import sionna >>> print(sionna.__version__) - 0.9.1 + 0.9.2 diff --git a/requirements.txt b/requirements.txt index 63d69c973..1b3aec540 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 diff --git a/setup.cfg b/setup.cfg index 83de77c96..2fdad91af 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 diff --git a/sionna/__init__.py b/sionna/__init__.py index 4db4602e4..bd3326e50 100644 --- a/sionna/__init__.py +++ b/sionna/__init__.py @@ -5,7 +5,7 @@ """This is the Sionna library. """ -__version__ = '0.9.1' +__version__ = '0.9.2' from . import utils from .constants import *