Skip to content

Commit

Permalink
Drop support for Python 3.6 (#363)
Browse files Browse the repository at this point in the history
Python 3.6 reached the end of its life last year.
  • Loading branch information
jparise authored Feb 1, 2022
1 parent c6582fd commit efbe513
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@ 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
Programming Language :: Python :: Implementation :: PyPy
License :: OSI Approved :: Apache Software License
Topic :: Database

[options]
python_requires = >= 3.7

[bdist_wheel]
universal = true

Expand Down
6 changes: 5 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -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 =
Expand Down

0 comments on commit efbe513

Please sign in to comment.