coreason-identity 0.4.1__tar.gz → 0.4.2__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.
Files changed (17) hide show
  1. {coreason_identity-0.4.1 → coreason_identity-0.4.2}/PKG-INFO +3 -3
  2. {coreason_identity-0.4.1 → coreason_identity-0.4.2}/pyproject.toml +6 -6
  3. {coreason_identity-0.4.1 → coreason_identity-0.4.2}/src/coreason_identity/__init__.py +1 -1
  4. {coreason_identity-0.4.1 → coreason_identity-0.4.2}/LICENSE +0 -0
  5. {coreason_identity-0.4.1 → coreason_identity-0.4.2}/NOTICE +0 -0
  6. {coreason_identity-0.4.1 → coreason_identity-0.4.2}/README.md +0 -0
  7. {coreason_identity-0.4.1 → coreason_identity-0.4.2}/src/coreason_identity/config.py +0 -0
  8. {coreason_identity-0.4.1 → coreason_identity-0.4.2}/src/coreason_identity/device_flow_client.py +0 -0
  9. {coreason_identity-0.4.1 → coreason_identity-0.4.2}/src/coreason_identity/exceptions.py +0 -0
  10. {coreason_identity-0.4.1 → coreason_identity-0.4.2}/src/coreason_identity/identity_mapper.py +0 -0
  11. {coreason_identity-0.4.1 → coreason_identity-0.4.2}/src/coreason_identity/main.py +0 -0
  12. {coreason_identity-0.4.1 → coreason_identity-0.4.2}/src/coreason_identity/manager.py +0 -0
  13. {coreason_identity-0.4.1 → coreason_identity-0.4.2}/src/coreason_identity/models.py +0 -0
  14. {coreason_identity-0.4.1 → coreason_identity-0.4.2}/src/coreason_identity/oidc_provider.py +0 -0
  15. {coreason_identity-0.4.1 → coreason_identity-0.4.2}/src/coreason_identity/utils/__init__.py +0 -0
  16. {coreason_identity-0.4.1 → coreason_identity-0.4.2}/src/coreason_identity/utils/logger.py +0 -0
  17. {coreason_identity-0.4.1 → coreason_identity-0.4.2}/src/coreason_identity/validator.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: coreason_identity
3
- Version: 0.4.1
3
+ Version: 0.4.2
4
4
  Summary: Decoupled authentication middleware, abstracting OIDC and OAuth2 protocols from the main application.
5
5
  License: Prosperity-3.0
6
6
  License-File: LICENSE
@@ -12,7 +12,7 @@ Classifier: License :: Other/Proprietary License
12
12
  Classifier: Programming Language :: Python :: 3.11
13
13
  Classifier: Programming Language :: Python :: 3.12
14
14
  Classifier: Operating System :: OS Independent
15
- Requires-Dist: aiofiles (>=23.0.0,<24.0.0)
15
+ Requires-Dist: aiofiles (>=25.1.0,<26.0.0)
16
16
  Requires-Dist: anyio (>=4.12.1,<5.0.0)
17
17
  Requires-Dist: authlib (>=1.6.6,<2.0.0)
18
18
  Requires-Dist: email-validator (>=2.3.0,<3.0.0)
@@ -21,7 +21,7 @@ Requires-Dist: loguru (>=0.7.2,<0.8.0)
21
21
  Requires-Dist: opentelemetry-api (>=1.39.1,<2.0.0)
22
22
  Requires-Dist: pydantic (>=2.12.5,<3.0.0)
23
23
  Requires-Dist: pydantic-settings (>=2.12.0,<3.0.0)
24
- Requires-Dist: types-aiofiles (>=23.0.0,<24.0.0)
24
+ Requires-Dist: types-aiofiles (>=25.1.0,<26.0.0)
25
25
  Project-URL: Documentation, https://github.com/CoReason-AI/coreason_identity
26
26
  Project-URL: Homepage, https://github.com/CoReason-AI/coreason_identity
27
27
  Project-URL: Repository, https://github.com/CoReason-AI/coreason_identity
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "coreason_identity"
3
- version = "0.4.1"
3
+ version = "0.4.2"
4
4
  description = "Decoupled authentication middleware, abstracting OIDC and OAuth2 protocols from the main application."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11, <3.15"
@@ -23,8 +23,8 @@ dependencies = [
23
23
  "email-validator>=2.3.0,<3.0.0",
24
24
  "opentelemetry-api>=1.39.1,<2.0.0",
25
25
  "anyio>=4.12.1,<5.0.0",
26
- "aiofiles>=23.0.0,<24.0.0",
27
- "types-aiofiles>=23.0.0,<24.0.0",
26
+ "aiofiles>=25.1.0,<26.0.0",
27
+ "types-aiofiles>=25.1.0,<26.0.0",
28
28
  ]
29
29
 
30
30
  [project.urls]
@@ -37,10 +37,10 @@ packages = [{include = "coreason_identity", from = "src"}]
37
37
  include = [{ path = "NOTICE", format = ["sdist", "wheel"] }]
38
38
 
39
39
  [tool.poetry.group.dev.dependencies]
40
- pytest = "^8.2.2"
40
+ pytest = "^9.0.2"
41
41
  ruff = "^0.14.14"
42
- pre-commit = "^3.7.1"
43
- pytest-cov = "^5.0.0"
42
+ pre-commit = "^4.5.1"
43
+ pytest-cov = "^7.0.0"
44
44
  mkdocs = "^1.6.0"
45
45
  mkdocs-material = "^9.5.26"
46
46
  opentelemetry-sdk = "^1.39.1"
@@ -24,7 +24,7 @@ from coreason_identity.exceptions import (
24
24
  from coreason_identity.manager import IdentityManager, IdentityManagerAsync
25
25
  from coreason_identity.models import DeviceFlowResponse, TokenResponse, UserContext
26
26
 
27
- __version__ = "0.3.0"
27
+ __version__ = "0.4.2"
28
28
  __author__ = "Gowtham A Rao"
29
29
  __email__ = "gowtham.rao@coreason.ai"
30
30