pyobs-auth 2.0.0.dev9__tar.gz → 2.0.0.dev10__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.
- {pyobs_auth-2.0.0.dev9 → pyobs_auth-2.0.0.dev10}/PKG-INFO +1 -1
- {pyobs_auth-2.0.0.dev9 → pyobs_auth-2.0.0.dev10}/pyobs_auth/authentication.py +1 -1
- {pyobs_auth-2.0.0.dev9 → pyobs_auth-2.0.0.dev10}/pyproject.toml +3 -1
- {pyobs_auth-2.0.0.dev9 → pyobs_auth-2.0.0.dev10}/.gitignore +0 -0
- {pyobs_auth-2.0.0.dev9 → pyobs_auth-2.0.0.dev10}/LICENSE +0 -0
- {pyobs_auth-2.0.0.dev9 → pyobs_auth-2.0.0.dev10}/pyobs_auth/__init__.py +0 -0
- {pyobs_auth-2.0.0.dev9 → pyobs_auth-2.0.0.dev10}/pyobs_auth/apps.py +0 -0
- {pyobs_auth-2.0.0.dev9 → pyobs_auth-2.0.0.dev10}/pyobs_auth/client.py +0 -0
- {pyobs_auth-2.0.0.dev9 → pyobs_auth-2.0.0.dev10}/pyobs_auth/discovery.py +0 -0
- {pyobs_auth-2.0.0.dev9 → pyobs_auth-2.0.0.dev10}/pyobs_auth/py.typed +0 -0
- {pyobs_auth-2.0.0.dev9 → pyobs_auth-2.0.0.dev10}/pyobs_auth/settings.py +0 -0
- {pyobs_auth-2.0.0.dev9 → pyobs_auth-2.0.0.dev10}/pyobs_auth/templates/pyobs_auth/error.html +0 -0
- {pyobs_auth-2.0.0.dev9 → pyobs_auth-2.0.0.dev10}/pyobs_auth/urls.py +0 -0
- {pyobs_auth-2.0.0.dev9 → pyobs_auth-2.0.0.dev10}/pyobs_auth/validation.py +0 -0
- {pyobs_auth-2.0.0.dev9 → pyobs_auth-2.0.0.dev10}/pyobs_auth/views.py +0 -0
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Single issuer only (the one Keycloak realm in PYOBS_AUTH) - there is deliberately no multi-issuer
|
|
4
4
|
support here. See pyobs-core's shared-auth design doc for why: any upstream identity provider
|
|
5
5
|
(including a self-hosted observation-portal) is meant to be brokered *behind* Keycloak, not
|
|
6
|
-
validated directly by this class, so archive/
|
|
6
|
+
validated directly by this class, so archive/portal/etc. only ever need to trust one
|
|
7
7
|
issuer.
|
|
8
8
|
|
|
9
9
|
This class is written to be safe to stack alongside another Bearer-scheme authenticator that
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pyobs-auth"
|
|
3
|
-
version = "2.0.0.
|
|
3
|
+
version = "2.0.0.dev10"
|
|
4
4
|
description = "Shared Keycloak/OIDC authentication client for pyobs web services"
|
|
5
5
|
authors = [{ name = "Tim-Oliver Husser", email = "thusser@uni-goettingen.de" }]
|
|
6
6
|
requires-python = ">=3.11"
|
|
@@ -22,6 +22,8 @@ dev = [
|
|
|
22
22
|
"pyrefly>=1.1.1",
|
|
23
23
|
"responses>=0.25.0,<1",
|
|
24
24
|
"types-requests>=2.32.0.20250328,<3",
|
|
25
|
+
"Sphinx",
|
|
26
|
+
"sphinx-rtd-theme",
|
|
25
27
|
]
|
|
26
28
|
|
|
27
29
|
[tool.hatch.build.targets.sdist]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|