From d434c63e9c84e0a5e753b3e2e824c4387654d20a Mon Sep 17 00:00:00 2001 From: Gopinath Langote Date: Fri, 21 Jun 2019 15:11:50 +0200 Subject: [PATCH] Change to python3 - all commands Issue: #10 --- docs/pip_publish.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/pip_publish.md b/docs/pip_publish.md index b2f7d230..b2b9e8f3 100644 --- a/docs/pip_publish.md +++ b/docs/pip_publish.md @@ -2,14 +2,14 @@ ## Prerequisites 1. Install `wheel` & `setuptool`: -`python -m pip install --upgrade pip setuptools wheel` +`python3 -m pip install --upgrade pip setuptools wheel` 2. Install `twine` – for publishing artifacts: -`pip install twine` +`pip3 install twine` ## Creating a distribution 1. Increment the version number in `setup.py` 2. Create the distribution package: -`python setup.py sdist bdist_wheel` +`python3 setup.py sdist bdist_wheel` ## Uploading the distribution to PyPi 3. Upload distribution to PyPi: