Add Python 3.9 to test matrix

This commit is contained in:
c-bata
2020-10-27 04:00:49 +09:00
parent 78e772e949
commit 4afe33df69
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Setup Python${{ matrix.python-version }}
+1 -1
View File
@@ -1,7 +1,7 @@
import io
from typing import Dict, Optional, Union, Any, Tuple, List, Callable, Iterable
WSGIEnv = Dict[str, Any]
WSGIEnv = Dict[str, Any] # Cannot use TypedDict because of 'HTTP_' variables
StartResponse = Callable[[str, List[Tuple[str, str]]], None]
WSGIApp = Callable[[WSGIEnv, StartResponse], Iterable[bytes]]