Add python 3.10 to GitHub Actions (#863)

This commit is contained in:
Bruno Alla 2022-10-26 23:59:10 +02:00 committed by GitHub
parent 06765c4f5a
commit fd8f97d46a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

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

View File

@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Added 'show_featured_artists.py' to 'examples'. * Added 'show_featured_artists.py' to 'examples'.
* Expanded contribution and license sections of the documentation. * Expanded contribution and license sections of the documentation.
* Added `FlaskSessionCacheHandler`, a cache handler that stores the token info in a flask session. * Added `FlaskSessionCacheHandler`, a cache handler that stores the token info in a flask session.
* Added Python 3.10 in GitHub Actions
### Fixed ### Fixed