summaryrefslogtreecommitdiff
path: root/.github/workflows/dev.yml
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2022-11-18 20:36:21 +0200
committerGitHub <noreply@github.com>2022-11-18 13:36:21 -0500
commita229e483b6f82f36600e73e7a2fb62dc2f5e7ed3 (patch)
treec80060753bcd69a9e857bcea0c8e1ce03aab7bc0 /.github/workflows/dev.yml
parentdbe74897764eb8338151e09cfc611e90cef12280 (diff)
downloadpython-slugify-a229e483b6f82f36600e73e7a2fb62dc2f5e7ed3.tar.gz
Add support for Python 3.11 (#121)
* Add support for Python 3.11 * Drop support for EOL Python 3.6
Diffstat (limited to '.github/workflows/dev.yml')
-rw-r--r--.github/workflows/dev.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml
index d0cb401..73f2f07 100644
--- a/.github/workflows/dev.yml
+++ b/.github/workflows/dev.yml
@@ -14,12 +14,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python: [3.6, 3.7, 3.8, 3.9, "3.10", pypy3]
+ python: [3.7, 3.8, 3.9, "3.10", 3.11, pypy3.8]
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: setup python
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies