summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJon Parise <jon@pinterest.com>2022-02-09 09:55:38 -0800
committerGitHub <noreply@github.com>2022-02-09 09:55:38 -0800
commita19947f21ee86003a25e8c70a85e6d8be2271a7d (patch)
tree03d11388082c9a3a5e3cc0905f6c3a50f29fcd7f /.github
parent01418099b3c3b3d8fd9a522a0bbfbfc52365ec33 (diff)
downloadpymemcache-a19947f21ee86003a25e8c70a85e6d8be2271a7d.tar.gz
Add official support for Python 3.10 (#365)
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 4b3f42a..19af3eb 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.7, 3.8, 3.9, pypy-3.7]
+ python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.7']
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 == '3.9'
+ if: matrix.python-version == '3.10'
run: |
pip install tox tox-gh-actions
tox -e flake8,black