opencontext-api 0.2.1b0__tar.gz → 0.4.0b0__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: opencontext-api
3
- Version: 0.2.1b0
3
+ Version: 0.4.0b0
4
4
  Summary: FastAPI adapter for OpenContext Runtime
5
5
  Author: OpenContext Runtime maintainers
6
6
  License-Expression: MIT
@@ -19,10 +19,12 @@ Classifier: Topic :: Security
19
19
  Requires-Python: >=3.12
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
- Requires-Dist: fastapi>=0.110
22
+ Requires-Dist: fastapi<0.136.3,>=0.110
23
23
  Requires-Dist: httpx>=0.27
24
+ Requires-Dist: idna>=3.15
24
25
  Requires-Dist: opencontext-core>=0.1.0
25
26
  Requires-Dist: opencontext-profiles>=0.1.0
27
+ Requires-Dist: starlette>=1.0.1
26
28
  Dynamic: license-file
27
29
 
28
30
  # opencontext-api
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: opencontext-api
3
- Version: 0.2.1b0
3
+ Version: 0.4.0b0
4
4
  Summary: FastAPI adapter for OpenContext Runtime
5
5
  Author: OpenContext Runtime maintainers
6
6
  License-Expression: MIT
@@ -19,10 +19,12 @@ Classifier: Topic :: Security
19
19
  Requires-Python: >=3.12
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
- Requires-Dist: fastapi>=0.110
22
+ Requires-Dist: fastapi<0.136.3,>=0.110
23
23
  Requires-Dist: httpx>=0.27
24
+ Requires-Dist: idna>=3.15
24
25
  Requires-Dist: opencontext-core>=0.1.0
25
26
  Requires-Dist: opencontext-profiles>=0.1.0
27
+ Requires-Dist: starlette>=1.0.1
26
28
  Dynamic: license-file
27
29
 
28
30
  # opencontext-api
@@ -1,4 +1,6 @@
1
- fastapi>=0.110
1
+ fastapi<0.136.3,>=0.110
2
2
  httpx>=0.27
3
+ idna>=3.15
3
4
  opencontext-core>=0.1.0
4
5
  opencontext-profiles>=0.1.0
6
+ starlette>=1.0.1
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "opencontext-api"
7
- version = "0.2.1b0"
7
+ version = "0.4.0b0"
8
8
  description = "FastAPI adapter for OpenContext Runtime"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.12"
@@ -22,10 +22,12 @@ classifiers = [
22
22
  "Topic :: Security",
23
23
  ]
24
24
  dependencies = [
25
- "fastapi>=0.110",
25
+ "fastapi>=0.110,<0.136.3", # 0.136.3 has MAL-2026-4750
26
26
  "httpx>=0.27",
27
+ "idna>=3.15",
27
28
  "opencontext-core>=0.1.0",
28
29
  "opencontext-profiles>=0.1.0",
30
+ "starlette>=1.0.1",
29
31
  ]
30
32
 
31
33
  [project.urls]