Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Drop support for py3.6" #4003

Merged
merged 5 commits into from
Jul 6, 2020
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Another option is to clone the repository and install PyMC3 using
Dependencies
============

PyMC3 is tested on Python 3.7 and depends on Theano, NumPy,
PyMC3 is tested on Python 3.6 and depends on Theano, NumPy,
SciPy, and Pandas (see ``requirements.txt`` for version
information).

Expand Down
2 changes: 0 additions & 2 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -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))

Expand Down
2 changes: 1 addition & 1 deletion scripts/install_miniconda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -80,7 +81,7 @@ def get_version():
# package_data={'docs': ['*']},
include_package_data=True,
classifiers=classifiers,
python_requires=">=3.7",
python_requires=">=3.6",
install_requires=install_reqs,
tests_require=test_reqs,
test_suite="nose.collector",
Expand Down