From 4c0efb6ba642496af86654e79d03e1e66d5905f8 Mon Sep 17 00:00:00 2001 From: Adrian Seyboldt Date: Thu, 2 Jul 2020 16:55:34 +0200 Subject: [PATCH 1/2] Drop support for py3.6 --- RELEASE-NOTES.md | 2 ++ scripts/install_miniconda.sh | 2 +- setup.py | 1 - 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 30f96ada6c..e119d42138 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,6 +1,8 @@ # Release Notes ## PyMC3 3.9.x (on deck) +This release does not support python 3.6 anymore. 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 b4035f4528..61d27943d0 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.6} # if no python specified, use 3.6 +PYTHON_VERSION=${PYTHON_VERSION:-3.7} # if no python specified, use 3.7 if [ ${PYTHON_VERSION} == "2.7" ]; then INSTALL_FOLDER="$HOME/miniconda2" diff --git a/setup.py b/setup.py index b7cda72df3..21c81c98e7 100755 --- a/setup.py +++ b/setup.py @@ -29,7 +29,6 @@ "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", From 4ce4cb4c91b22c5197a4665c6f5d9adc253d94e5 Mon Sep 17 00:00:00 2001 From: Adrian Seyboldt Date: Thu, 2 Jul 2020 18:00:28 +0200 Subject: [PATCH 2/2] Update RELEASE-NOTES.md Co-authored-by: Colin --- RELEASE-NOTES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index e119d42138..f7e7811fda 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,7 +1,7 @@ # Release Notes ## PyMC3 3.9.x (on deck) -This release does not support python 3.6 anymore. Use python 3.7 or higher. +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))