auth0-api-python 1.0.0b6__tar.gz → 1.0.0b7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: auth0-api-python
3
- Version: 1.0.0b6
3
+ Version: 1.0.0b7
4
4
  Summary: SDK for verifying access tokens and securing APIs with Auth0, using Authlib.
5
5
  License: MIT
6
6
  License-File: LICENSE
@@ -15,7 +15,8 @@ Classifier: Programming Language :: Python :: 3.11
15
15
  Classifier: Programming Language :: Python :: 3.12
16
16
  Classifier: Programming Language :: Python :: 3.13
17
17
  Classifier: Programming Language :: Python :: 3.14
18
- Requires-Dist: ada-url (>=1.27.0,<2.0.0)
18
+ Requires-Dist: ada-url (>=1.27.0,<2.0.0) ; python_version == "3.9"
19
+ Requires-Dist: ada-url (>=1.30.0,<2.0.0) ; python_version >= "3.10"
19
20
  Requires-Dist: authlib (>=1.0,<2.0)
20
21
  Requires-Dist: httpx (>=0.28.1,<0.29.0)
21
22
  Requires-Dist: requests (>=2.31.0,<3.0.0)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "auth0-api-python"
3
- version = "1.0.0.b6"
3
+ version = "1.0.0.b7"
4
4
  description = "SDK for verifying access tokens and securing APIs with Auth0, using Authlib."
5
5
  authors = ["Auth0 <support@auth0.com>"]
6
6
  license = "MIT"
@@ -15,7 +15,10 @@ python = "^3.9"
15
15
  authlib = "^1.0" # For JWT/OIDC features
16
16
  requests = "^2.31.0" # If you use requests for HTTP calls (e.g., discovery)
17
17
  httpx = "^0.28.1"
18
- ada-url = "^1.27.0"
18
+ ada-url = [
19
+ {version = "^1.30.0", python = ">=3.10"},
20
+ {version = "^1.27.0", python = ">=3.9,<3.10"}
21
+ ]
19
22
 
20
23
  [tool.poetry.group.dev.dependencies]
21
24
  pytest = "^8.0"
@@ -23,7 +26,7 @@ pytest-cov = "^4.0"
23
26
  pytest-asyncio = "^0.25.3"
24
27
  pytest-mock = "^3.15.1"
25
28
  pytest-httpx = "^0.35.0"
26
- ruff = ">=0.1,<0.15"
29
+ ruff = ">=0.1"
27
30
  freezegun = "^1.5.5"
28
31
 
29
32
  [tool.pytest.ini_options]