Removed Python 3.5 and added Python 3.9 in Github Action (#831)

* Removed python3.5 from CI

* Add python 3.9
This commit is contained in:
Stéphane Bruckert 2022-06-18 22:56:42 +01:00 committed by GitHub
parent 9a627e88f4
commit 98f0f76238
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
python-version: [2.7, 3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2

View File

@ -13,6 +13,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Added a new parameter to `RedisCacheHandler` to allow custom keys (instead of the default `token_info` key)
* Simplify check for existing token in `RedisCacheHandler`
### Changed
* Removed Python 3.5 and added Python 3.9 in Github Action
## [2.19.0] - 2021-08-12
### Added