From b0ed7330aaf42fa1ae1328bad2580d2295e29a2b Mon Sep 17 00:00:00 2001 From: Andre Miras Date: Mon, 11 May 2020 13:25:40 +0200 Subject: [PATCH] :books: Advise on using a venv Also bumps the dev version. --- README.md | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 017f36f..3995702 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,11 @@ These recipes are not ported to the new toolchain yet: ## Installation & requirements +Before we start, we strongly advise to use a Python virtual environment to install Python packages. + + python3 -m venv venv + . venv/bin/activate + Install [Kivy for iOS from PyPI](https://pypi.org/project/kivy-ios) with pip like any Python package. pip3 install kivy-ios diff --git a/setup.py b/setup.py index 11d9640..18d3ae4 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def recursive_include(module): setup( name="kivy-ios", - version="1.1.2", + version="1.1.2.dev0", description="Kivy for iOS", long_description=read("README.md"), long_description_content_type="text/markdown",