From 0b9e955eef21bb4c813258bdb42f93b4a46df7b1 Mon Sep 17 00:00:00 2001 From: Vincent Stimper Date: Tue, 26 Jul 2022 16:16:20 +0200 Subject: [PATCH] Version updated --- README.md | 4 ++-- normflows/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a48884f..2066df2 100644 --- a/README.md +++ b/README.md @@ -35,8 +35,8 @@ The latest version of the package can be installed via pip pip install normflows ``` -If you want to use a GPU, make sure that PyTorch is set up correctly by -by following the instructions at the +At least Python 3.7 is required. If you want to use a GPU, make sure that +PyTorch is set up correctly by following the instructions at the [PyTorch website](https://pytorch.org/get-started/locally/). To run the example notebooks clone the repository first diff --git a/normflows/__init__.py b/normflows/__init__.py index 8d4fffc..80da5d5 100644 --- a/normflows/__init__.py +++ b/normflows/__init__.py @@ -10,4 +10,4 @@ from . import sampling from .sampling import HAIS -__version__ = "1.3" +__version__ = "1.4" diff --git a/setup.py b/setup.py index 5cdb94d..240b77b 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from codecs import open from os import path -__version__ = "1.3" +__version__ = "1.4" here = path.abspath(path.dirname(__file__))