summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Parise <jon@pinterest.com>2022-02-01 13:00:28 -0800
committerGitHub <noreply@github.com>2022-02-01 13:00:28 -0800
commitefbe5137727fe18c5cb8e09e889471dd88111d7d (patch)
tree7e765ba3213a573cc8ab8a1109c230a7947011cf
parentc6582fdcc01ba542b5d0f1f047aca2ad9d4f7e30 (diff)
downloadpymemcache-efbe5137727fe18c5cb8e09e889471dd88111d7d.tar.gz
Drop support for Python 3.6 (#363)
Python 3.6 reached the end of its life last year.
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--setup.cfg4
-rw-r--r--tox.ini6
3 files changed, 9 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 038d4f2..4b3f42a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python-version: [3.6, 3.7, 3.8, 3.9, pypy3]
+ python-version: [3.7, 3.8, 3.9, pypy-3.7]
steps:
- uses: actions/checkout@v2
diff --git a/setup.cfg b/setup.cfg
index 96d4b06..d8a9bb8 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -12,7 +12,6 @@ keywords = memcache, client, database
classifiers =
Programming Language :: Python
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
@@ -20,6 +19,9 @@ classifiers =
License :: OSI Approved :: Apache Software License
Topic :: Database
+[options]
+python_requires = >= 3.7
+
[bdist_wheel]
universal = true
diff --git a/tox.ini b/tox.ini
index 63d4a32..d029fa6 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,11 +1,15 @@
[tox]
-envlist = py36, py37, py38, py39, pypy, pypy3, flake8, black, integration
+envlist = py37, py38, py39, pypy3, flake8, black, integration
skip_missing_interpreters = True
# Automatic envs (pyXX) will only use the python version appropriate to that
# env and ignore basepython inherited from [testenv] if we set
# ignore_basepython_conflict.
ignore_basepython_conflict = True
+[gh-actions]
+python =
+ pypy-3.7: pypy3
+
[testenv]
basepython = python3
setenv =