From f336aa86f3e32c4e85b66fe303dcd36575962898 Mon Sep 17 00:00:00 2001 From: Santiago Soler Date: Thu, 5 May 2022 14:52:08 -0300 Subject: [PATCH] Drop support for Python 3.6 (#309) Remove the compatibility metadata, remove from the CI matrix, bump the python_requires to 3.7+. --- .github/workflows/test.yml | 2 +- doc/install.rst | 2 +- setup.cfg | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6a461f38b..8b2b3a209 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,7 +39,7 @@ jobs: - macos - windows python: - - "3.6" + - "3.7" - "3.9" dependencies: - latest diff --git a/doc/install.rst b/doc/install.rst index 503fbece8..e43f2aacd 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -6,7 +6,7 @@ Installing Which Python? ------------- -You'll need **Python 3.6 or greater**. +You'll need **Python 3.7 or greater**. We recommend using the `Anaconda Python distribution `__ diff --git a/setup.cfg b/setup.cfg index 299de10b4..260f560af 100644 --- a/setup.cfg +++ b/setup.cfg @@ -23,7 +23,6 @@ classifiers = Topic :: Scientific/Engineering Topic :: Software Development :: Libraries Programming Language :: Python :: 3 :: Only - Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 @@ -38,7 +37,7 @@ project_urls = zip_safe = True include_package_data = True packages = find: -python_requires = >=3.6 +python_requires = >=3.7 install_requires = numpy pandas