From cf7aeb47195b4d37107e4e7aed5839344a96cb45 Mon Sep 17 00:00:00 2001 From: Junpeng Lao Date: Mon, 6 Jul 2020 16:27:51 +0200 Subject: [PATCH] Revert "Drop support for py3.6 (#3992)" This reverts commit 1bf867edf74e1c5fc0db79a4f0ca4e2bdab94e66. --- RELEASE-NOTES.md | 2 -- scripts/install_miniconda.sh | 2 +- setup.py | 1 + 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index e17392a97f..c678272efb 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,8 +1,6 @@ # Release Notes ## PyMC3 3.9.x (on deck) -This release [does not support Python 3.6 anymore](https://numpy.org/neps/nep-0029-deprecation_policy.html). Use Python 3.7 or higher. - ### Documentation - Notebook on [multilevel modeling](https://docs.pymc.io/notebooks/multilevel_modeling.html) has been rewritten to showcase ArviZ and xarray usage for inference result analysis (see [#3963](https://github.com/pymc-devs/pymc3/pull/3963)) diff --git a/scripts/install_miniconda.sh b/scripts/install_miniconda.sh index 61d27943d0..b4035f4528 100755 --- a/scripts/install_miniconda.sh +++ b/scripts/install_miniconda.sh @@ -7,7 +7,7 @@ if conda --version > /dev/null 2>&1; then exit 0 fi -PYTHON_VERSION=${PYTHON_VERSION:-3.7} # if no python specified, use 3.7 +PYTHON_VERSION=${PYTHON_VERSION:-3.6} # if no python specified, use 3.6 if [ ${PYTHON_VERSION} == "2.7" ]; then INSTALL_FOLDER="$HOME/miniconda2" diff --git a/setup.py b/setup.py index eef672998a..a09b70515e 100755 --- a/setup.py +++ b/setup.py @@ -29,6 +29,7 @@ "Development Status :: 5 - Production/Stable", "Programming Language :: Python", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "License :: OSI Approved :: Apache Software License",