Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version #185

Merged
merged 4 commits into from
Mar 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,9 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.11.4", "3.12.0" ]
fastapi-version: [ "0.103.2"]
pydantic-version: [ "1.10.13", "2.4.2"]
exclude:
# Don't test python 3.12 on old FastAPI versions
- fastapi-version: "0.86.0"
pydantic-version: "2.1.1"
- fastapi-version: "0.95.0"
pydantic-version: "2.1.1"
python-version: [ "3.11.4", "3.12.2" ]
fastapi-version: [ "0.103.2", "0.110.0"]
pydantic-version: [ "1.10.13", "2.6.2"]
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions demo_project/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
if settings.BACKEND_CORS_ORIGINS: # pragma: no cover
app.add_middleware(
CORSMiddleware,
allow_origins=[str(origin) for origin in settings.BACKEND_CORS_ORIGINS],
allow_credentials=True,
allow_methods=['*'],
allow_headers=['*'],
allow_origins=[str(origin) for origin in settings.BACKEND_CORS_ORIGINS], # type: ignore
allow_credentials=True, # type: ignore
allow_methods=['*'], # type: ignore
allow_headers=['*'], # type: ignore
)


Expand Down
2 changes: 1 addition & 1 deletion fastapi_azure_auth/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
SingleTenantAzureAuthorizationCodeBearer as SingleTenantAzureAuthorizationCodeBearer,
)

__version__ = '4.3.0'
__version__ = '4.3.1'
Loading