summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Parise <jon@pinterest.com>2020-10-11 10:44:53 -0700
committerJon Parise <jon@indelible.org>2020-10-13 10:47:39 -0700
commit9bf5dd5d6e4bf2d6de9d3b2778e55958a74474a9 (patch)
tree6ec5fff905bef8874e9a470149efe03147bf8908
parentad9a25b5ff78a3f3968d434d22ed488cacadc9e9 (diff)
downloadpymemcache-9bf5dd5d6e4bf2d6de9d3b2778e55958a74474a9.tar.gz
Drop Python version 3.5 and add 3.9
- https://pythoninsider.blogspot.com/2020/10/python-35-is-no-longer-supported.html - https://pythoninsider.blogspot.com/2020/10/python-390-is-now-available-and-you-can.html
-rw-r--r--.github/workflows/ci.yml4
-rw-r--r--setup.cfg2
-rw-r--r--test-requirements.txt4
3 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e3bb97d..e3445c6 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python-version: [2.7, 3.5, 3.6, 3.7, 3.8, pypy2, pypy3]
+ python-version: [2.7, 3.6, 3.7, 3.8, 3.9, pypy2, pypy3]
steps:
- uses: actions/checkout@v2
@@ -26,7 +26,7 @@ jobs:
python -m pip install --upgrade pip
sudo apt-get install libmemcached-dev
- name: Lint
- if: matrix.python-version == '2.7' || matrix.python-version == '3.8'
+ if: matrix.python-version == '2.7' || matrix.python-version == '3.9'
run: |
pip install codespell flake8
codespell . --skip=./.*,./pymemcache/test/certs --quiet-level=2
diff --git a/setup.cfg b/setup.cfg
index 441239a..22f7d97 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -12,10 +12,10 @@ keywords = memcache, client, database
classifiers =
Programming Language :: Python
Programming Language :: Python :: 2.7
- 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 :: Implementation :: PyPy
License :: OSI Approved :: Apache Software License
Topic :: Database
diff --git a/test-requirements.txt b/test-requirements.txt
index 3d7daa4..fccd6ea 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -1,7 +1,7 @@
+future
mock
pytest
pytest-cov
-gevent==1.3.6; "PyPy" not in platform_python_implementation
+gevent==20.9.0; "PyPy" not in platform_python_implementation
pylibmc; sys.platform != 'win32'
python-memcached
-future