summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJoe Gordon <jogo@pinterest.com>2021-05-27 09:34:02 -0700
committerJoe Gordon <jogo@pinterest.com>2021-07-20 11:46:07 -0700
commitfe2114f01fe9526c3e4336bd409be606a16a7675 (patch)
treee7caea02893cd7f7c4eaf26023471904fbf08c63 /.github
parentb967fe86f1433ae355a0fdd2ad33224ca1a2c5d8 (diff)
downloadpymemcache-fe2114f01fe9526c3e4336bd409be606a16a7675.tar.gz
Drop python support 2.7, 3.4 and 3.5
Add Python 3 only classifier Stop running Python 2 tests End of Life information: * 3.5 https://www.python.org/downloads/release/python-350/ * 3.4 https://www.python.org/downloads/release/python-340/ * 2.7 https://www.python.org/doc/sunset-python-2/
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b5f50e3..9a7105f 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.6, 3.7, 3.8, 3.9, pypy2, pypy3]
+ python-version: [3.6, 3.7, 3.8, 3.9, 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.9'
+ if: matrix.python-version == '3.9'
run: |
pip install tox tox-gh-actions
tox -e flake8