From 3a6c6d0b4b20943f5bba95fda4cecc68ac05386a Mon Sep 17 00:00:00 2001 From: Michele Tessaro Date: Sat, 28 May 2022 16:02:26 +0200 Subject: [PATCH] @minor removed package build for old pythons --- release.sh | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/release.sh b/release.sh index 86ff20e..516a836 100755 --- a/release.sh +++ b/release.sh @@ -3,17 +3,8 @@ [[ -d "build" ]] && rm -rf build [[ -d "dist" ]] && rm -rf dist -# Build package for Python 2 -#[[ -d ".env27" ]] || python2.7 -m virtualenv .env27 -#. .env27/bin/activate -#pip install setuptools twine wheel -#python setup.py bdist_wheel - -#deactivate - # Build package for Python 3 -[[ -d ".env36" ]] || python3.6 -m virtualenv .env36 -. .env36/bin/activate +. .env3*/bin/activate pip install setuptools twine wheel python setup.py bdist_wheel