From c2efcc58a5d7ca0a480bde9b4d577c77ac92eed6 Mon Sep 17 00:00:00 2001 From: "Paul J. Dorn" Date: Sun, 10 Dec 2023 20:46:09 +0100 Subject: [PATCH] CI: compat linting on Python 3.10 --- .github/workflows/tox.yml | 2 +- gunicorn/http/parser.pyi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index ea19cbc31..ed1845103 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -13,7 +13,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] # All OSes pass except Windows because tests need Unix-only fcntl, grp, pwd, etc. - python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.x" ] + python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.10" ] steps: - uses: actions/checkout@v4 - name: Using Python ${{ matrix.python-version }} diff --git a/gunicorn/http/parser.pyi b/gunicorn/http/parser.pyi index 21be17fba..b0c3ba656 100644 --- a/gunicorn/http/parser.pyi +++ b/gunicorn/http/parser.pyi @@ -1,4 +1,4 @@ -from typing import Self +from typing_extensions import Self from _typeshed import Incomplete