Skip to content

Commit 1bf867e

Browse files
Drop support for py3.6 (#3992)
* Drop support for py3.6 * Update RELEASE-NOTES.md Co-authored-by: Colin <[email protected]> Co-authored-by: Colin <[email protected]>
1 parent 7842072 commit 1bf867e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

RELEASE-NOTES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Release Notes
22

33
## PyMC3 3.9.x (on deck)
4+
This release [does not support Python 3.6 anymore](https://numpy.org/neps/nep-0029-deprecation_policy.html). Use Python 3.7 or higher.
5+
46
### Documentation
57
- 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))
68

scripts/install_miniconda.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if conda --version > /dev/null 2>&1; then
77
exit 0
88
fi
99

10-
PYTHON_VERSION=${PYTHON_VERSION:-3.6} # if no python specified, use 3.6
10+
PYTHON_VERSION=${PYTHON_VERSION:-3.7} # if no python specified, use 3.7
1111

1212
if [ ${PYTHON_VERSION} == "2.7" ]; then
1313
INSTALL_FOLDER="$HOME/miniconda2"

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
"Development Status :: 5 - Production/Stable",
3030
"Programming Language :: Python",
3131
"Programming Language :: Python :: 3",
32-
"Programming Language :: Python :: 3.6",
3332
"Programming Language :: Python :: 3.7",
3433
"Programming Language :: Python :: 3.8",
3534
"License :: OSI Approved :: Apache Software License",

0 commit comments

Comments
 (0)