Skip to content

Commit 8075e6a

Browse files
authored
Merge pull request #28 from bmoore/patch-2
Updating version range due to strict fastapi req
2 parents 7a161fc + 1906bdb commit 8075e6a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/testing.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
strategy:
2828
fail-fast: false
2929
matrix:
30-
python-version: [ "3.9" ]
31-
fastapi-version: [ "0.68.0" ]
30+
python-version: [ "3.9", "3.10" ]
31+
fastapi-version: [ "0.68.0", "0.70.0" ]
3232
steps:
3333
- name: Check out repository
3434
uses: actions/checkout@v2

fastapi_azure_auth/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
SingleTenantAzureAuthorizationCodeBearer as SingleTenantAzureAuthorizationCodeBearer,
44
)
55

6-
__version__ = '3.0.1'
6+
__version__ = '3.0.2'

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "fastapi-azure-auth"
3-
version = "3.0.1" # Remember to change in __init__.py as well
3+
version = "3.0.2" # Remember to change in __init__.py as well
44
description = "Easy and secure implementation of Azure AD for your FastAPI APIs"
55
authors = ["Jonas Krüger Svensson <[email protected]>"]
66
readme = "README.md"
@@ -26,7 +26,7 @@ classifiers = [
2626

2727
[tool.poetry.dependencies]
2828
python = "^3.9"
29-
fastapi = "^0.68.0"
29+
fastapi = "^0.68.0,<1.0.0"
3030
aiohttp = "^3"
3131
cryptography = "^35.0.0"
3232
python-jose = {extras = ["cryptography"], version = "^3.3.0"}

0 commit comments

Comments
 (0)