Skip to content
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
4 changes: 2 additions & 2 deletions packages/auth0_api_python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[tool.poetry]
name = "auth0-api-python"
version = "1.0.0.b2"
version = "1.0.0.b3"
description = "SDK for verifying access tokens and securing APIs with Auth0, using Authlib."
authors = ["Auth0 <support@auth0.com>"]
license = "MIT"
readme = "README.md"

packages = [
{ include = "src" }
{ include = "auth0_api_python", from = "src" }
]

[tool.poetry.dependencies]
Expand Down
8 changes: 4 additions & 4 deletions packages/auth0_api_python/tests/test_api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
from pytest_httpx import HTTPXMock
from unittest.mock import AsyncMock, patch

from src.api_client import ApiClient
from src.config import ApiClientOptions
from src.errors import MissingRequiredArgumentError, VerifyAccessTokenError, MissingRequiredArgumentError
from src.token_utils import generate_token
from src.auth0_api_python.api_client import ApiClient
from src.auth0_api_python.config import ApiClientOptions
from src.auth0_api_python.errors import MissingRequiredArgumentError, VerifyAccessTokenError
from src.auth0_api_python.token_utils import generate_token


@pytest.mark.asyncio
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from .utils import get_bearer_token, validate_scopes, http_exception

from src.api_client import ApiClient, ApiClientOptions, VerifyAccessTokenError
from auth0_api_python.api_client import ApiClient, ApiClientOptions, VerifyAccessTokenError


class Auth0FastAPI:
Expand Down
118 changes: 59 additions & 59 deletions packages/auth0_fastapi_api/poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/auth0_fastapi_api/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "auth0-fastapi-api"
version = "1.0.0.b2"
version = "1.0.0.b3"
description = "SDK for verifying access tokens and securing APIs with Auth0, using Authlib."
authors = ["Auth0 <support@okta.com>"]
license = "MIT"
Expand All @@ -15,7 +15,7 @@ python = "^3.9"
fastapi = "^0.115.11"
httpx = "^0.28.1"
uvicorn = "^0.34.0"
auth0-api-python = ">=1.0.0b1"
auth0-api-python = ">=1.0.0b1"

[tool.poetry.group.dev.dependencies]
pytest = "^8.0"
Expand Down