From fcf83a5b5eaee4b843ba22d0c44e897eab50840e Mon Sep 17 00:00:00 2001 From: Stephen Privitera Date: Mon, 10 Jun 2024 11:02:52 +0200 Subject: [PATCH] update installation instructions --- setup.py | 2 +- sphinx/01_installation.rst | 7 +++---- sphinx/conf.py | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 603b25c..7f1c3cd 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ import setuptools -__version__ = "0.1.7" +__version__ = "0.1.8" with open("README.md", "r") as fh: long_description = fh.read() diff --git a/sphinx/01_installation.rst b/sphinx/01_installation.rst index 9ff6b04..d6d46b2 100644 --- a/sphinx/01_installation.rst +++ b/sphinx/01_installation.rst @@ -5,11 +5,10 @@ Installation instructions Install from PIP ========================= -We reccomend using virtualenv and installing pybalance using pip: +We reccomend using condas and installing pybalance using pip: - >>> python3.9 -m venv venv/pybalance - >>> source venv/pybalance/bin/activate - >>> pip install --upgrade pip + >>> conda create -n pybalance python=3.9 + >>> conda activate pybalance >>> pip install pybalance If you wish you use pybalance within a jupyter notebook, you will also need to diff --git a/sphinx/conf.py b/sphinx/conf.py index 7efbe2d..74648d8 100644 --- a/sphinx/conf.py +++ b/sphinx/conf.py @@ -26,7 +26,7 @@ copyright = f"2024 - Bayer AG - {author}" # The full version, including alpha/beta/rc tags -release = "0.1.5" +release = "0.1.8" # -- General configuration ---------------------------------------------------