From 9eb2076494f80a19d8ddcb5f1f27d52f4c90ad28 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Wed, 2 Mar 2022 07:48:33 -0600 Subject: [PATCH] Update supported python versions --- .github/workflows/tests.yml | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 95525811..46b55aa9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ jobs: fail-fast: false matrix: OS: ['ubuntu-latest', 'windows-latest'] - PYTHON_VERSION: ['3.6', '3.7', '3.8', '3.9'] + PYTHON_VERSION: ['3.7', '3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v2 - name: Set up Python diff --git a/setup.py b/setup.py index e8b5476f..902254de 100644 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ author_email = 'jupyter@googlegroups.com', url = 'http://jupyter.org', license = 'BSD', - python_requires = '>=3.5', + python_requires = '>=3.7', platforms = "Linux, Mac OS X, Windows", keywords = ['Interactive', 'Interpreter', 'Shell', 'Web'], classifiers = [ @@ -76,10 +76,10 @@ 'License :: OSI Approved :: BSD License', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', ], )