diff options
| author | Jon Parise <jon@pinterest.com> | 2022-02-01 13:00:28 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-01 13:00:28 -0800 |
| commit | efbe5137727fe18c5cb8e09e889471dd88111d7d (patch) | |
| tree | 7e765ba3213a573cc8ab8a1109c230a7947011cf | |
| parent | c6582fdcc01ba542b5d0f1f047aca2ad9d4f7e30 (diff) | |
| download | pymemcache-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.yml | 2 | ||||
| -rw-r--r-- | setup.cfg | 4 | ||||
| -rw-r--r-- | tox.ini | 6 |
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 @@ -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 @@ -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 = |
