Skip to content

Commit 617840f

Browse files
Maintenance
1 parent 5728cef commit 617840f

4 files changed

Lines changed: 13 additions & 15 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ env:
1616

1717
jobs:
1818
build:
19-
runs-on: ubuntu-18.04
19+
runs-on: ubuntu-latest
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
23+
python-version: [3.8, 3.9, "3.10", "3.11"]
2424

2525
steps:
2626
- uses: actions/checkout@v1
@@ -90,7 +90,7 @@ jobs:
9090
if: matrix.python-version == 3.8 || matrix.python-version == 3.9
9191

9292
publish:
93-
runs-on: ubuntu-18.04
93+
runs-on: ubuntu-latest
9494
needs: build
9595
if: github.event_name == 'release'
9696
steps:

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.0] - 2022-11-06 :snake:
9+
- Workflow maintenance
10+
811
## [0.0.9] - 2021-11-14 :swan:
912
- Adds `sub`, `access_token`, and `refresh_token` properties to the `Identity`
1013
class

project.code-workspace

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,5 @@
2424
100
2525
]
2626
}
27-
},
28-
"extensions": {
29-
"recommendations": [
30-
"njpwerner.autodocstring"
31-
]
3227
}
3328
}

requirements.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
pytest~=6.2.5
2-
pytest-asyncio~=0.16.0
3-
pytest-cov~=3.0.0
4-
flake8==3.8.4
5-
PyJWT~=2.3.0
6-
isort==5.9.3
7-
cryptography~=35.0.0
1+
pytest
2+
pytest-asyncio
3+
pytest-cov
4+
flake8
5+
PyJWT
6+
isort
7+
cryptography
88
black
99
flask

0 commit comments

Comments
 (0)