Merge pull request #3785 from tirkarthi/add-py39

This commit is contained in:
David Lord 2020-10-31 20:05:25 -07:00 committed by GitHub
commit 06495e791b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 8 deletions

View file

@ -16,15 +16,15 @@ jobs:
fail-fast: false
matrix:
include:
- {name: Linux, python: '3.8', os: ubuntu-latest, tox: py38}
- {name: Windows, python: '3.8', os: windows-latest, tox: py38}
- {name: Mac, python: '3.8', os: macos-latest, tox: py38}
- {name: Linux, python: '3.9', os: ubuntu-latest, tox: py39}
- {name: Windows, python: '3.9', os: windows-latest, tox: py39}
- {name: Mac, python: '3.9', os: macos-latest, tox: py39}
- {name: '3.8', python: '3.8', os: ubuntu-latest, tox: py38}
- {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37}
- {name: '3.6', python: '3.6', os: ubuntu-latest, tox: py36}
- {name: 'PyPy', python: pypy3, os: ubuntu-latest, tox: pypy3}
- {name: Version Range, python: '3.8', os: ubuntu-latest, tox: 'devel'}
- {name: Style, python: '3.8', os: ubuntu-latest, tox: style}
- {name: Docs, python: '3.8', os: ubuntu-latest, tox: docs}
- {name: Version Range, python: '3.9', os: ubuntu-latest, tox: 'devel'}
- {name: Docs, python: '3.9', os: ubuntu-latest, tox: docs}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2

View file

@ -90,7 +90,7 @@ class Request(RequestBase, JSONMixin):
attach_enctype_error_multidict(self)
class Response(ResponseBase, JSONMixin):
class Response(JSONMixin, ResponseBase):
"""The response object that is used by default in Flask. Works like the
response object from Werkzeug but is set to have an HTML mimetype by
default. Quite often you don't have to create this object yourself because

View file

@ -1,6 +1,6 @@
[tox]
envlist =
py{38,37,36,py3}
py{39,38,37,36,py3}
py38-devel
style
docs