aboutsummaryrefslogtreecommitdiff
path: root/tests.local.sh
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-09-01 22:13:21 -0400
committerBobby <[email protected]>2022-09-01 22:13:21 -0400
commit0058f0626ab7f11d123aa8edd2858715891ec7b1 (patch)
treea7af2deb321291a72c27b1bcedf37517e413a6b8 /tests.local.sh
parentd69d7560960d8dc7414be1e0c51d3a2088a5b32d (diff)
downloadedify-0058f0626ab7f11d123aa8edd2858715891ec7b1.tar.xz
edify-0058f0626ab7f11d123aa8edd2858715891ec7b1.zip
Removing backwards compatibility for Python 3.6. Min Python now is 3.7
Diffstat (limited to 'tests.local.sh')
-rwxr-xr-xtests.local.sh5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests.local.sh b/tests.local.sh
index 2ced739..031d6e4 100755
--- a/tests.local.sh
+++ b/tests.local.sh
@@ -16,10 +16,7 @@ PYTHON_VERSION=$(python3 -c 'import sys; print(".".join(map(str, sys.version_inf
# Subset the python version to the major.minor version
PYTHON_VERSION=$(echo $PYTHON_VERSION | cut -d. -f1,2)
-if [ "$PYTHON_VERSION" = "3.6" ]; then
- # Build using python 3.6
- tox -e py36 -v
-elif [ "$PYTHON_VERSION" = "3.7" ]; then
+if [ "$PYTHON_VERSION" = "3.7" ]; then
# Build using python 3.7
tox -e py37 -v
elif [ "$PYTHON_VERSION" = "3.8" ]; then