pyyapi 0.3.0__tar.gz → 0.3.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 (28) hide show
  1. {pyyapi-0.3.0/pyyapi.egg-info → pyyapi-0.3.2}/PKG-INFO +4 -4
  2. {pyyapi-0.3.0 → pyyapi-0.3.2}/pyproject.toml +4 -4
  3. {pyyapi-0.3.0 → pyyapi-0.3.2/pyyapi.egg-info}/PKG-INFO +4 -4
  4. {pyyapi-0.3.0 → pyyapi-0.3.2}/pyyapi.egg-info/requires.txt +3 -3
  5. {pyyapi-0.3.0 → pyyapi-0.3.2}/LICENSE +0 -0
  6. {pyyapi-0.3.0 → pyyapi-0.3.2}/README.md +0 -0
  7. {pyyapi-0.3.0 → pyyapi-0.3.2}/pyyapi.egg-info/SOURCES.txt +0 -0
  8. {pyyapi-0.3.0 → pyyapi-0.3.2}/pyyapi.egg-info/dependency_links.txt +0 -0
  9. {pyyapi-0.3.0 → pyyapi-0.3.2}/pyyapi.egg-info/top_level.txt +0 -0
  10. {pyyapi-0.3.0 → pyyapi-0.3.2}/setup.cfg +0 -0
  11. {pyyapi-0.3.0 → pyyapi-0.3.2}/tests/test_compat.py +0 -0
  12. {pyyapi-0.3.0 → pyyapi-0.3.2}/tests/test_dx.py +0 -0
  13. {pyyapi-0.3.0 → pyyapi-0.3.2}/tests/test_exports.py +0 -0
  14. {pyyapi-0.3.0 → pyyapi-0.3.2}/tests/test_integration.py +0 -0
  15. {pyyapi-0.3.0 → pyyapi-0.3.2}/tests/test_prompt_context.py +0 -0
  16. {pyyapi-0.3.0 → pyyapi-0.3.2}/tests/test_router.py +0 -0
  17. {pyyapi-0.3.0 → pyyapi-0.3.2}/tests/test_runner.py +0 -0
  18. {pyyapi-0.3.0 → pyyapi-0.3.2}/tests/test_runtime.py +0 -0
  19. {pyyapi-0.3.0 → pyyapi-0.3.2}/yapi/__init__.py +0 -0
  20. {pyyapi-0.3.0 → pyyapi-0.3.2}/yapi/agent.py +0 -0
  21. {pyyapi-0.3.0 → pyyapi-0.3.2}/yapi/endpoint.py +0 -0
  22. {pyyapi-0.3.0 → pyyapi-0.3.2}/yapi/errors.py +0 -0
  23. {pyyapi-0.3.0 → pyyapi-0.3.2}/yapi/models.py +0 -0
  24. {pyyapi-0.3.0 → pyyapi-0.3.2}/yapi/prompt_context.py +0 -0
  25. {pyyapi-0.3.0 → pyyapi-0.3.2}/yapi/py.typed +0 -0
  26. {pyyapi-0.3.0 → pyyapi-0.3.2}/yapi/router.py +0 -0
  27. {pyyapi-0.3.0 → pyyapi-0.3.2}/yapi/runner.py +0 -0
  28. {pyyapi-0.3.0 → pyyapi-0.3.2}/yapi/runtime.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyyapi
3
- Version: 0.3.0
3
+ Version: 0.3.2
4
4
  Summary: Prompt-first declarative HTTP framework on top of FastAPI and PydanticAI
5
5
  Author-email: DJJ <shuaiqijianhao@qq.com>
6
6
  License: MIT
@@ -25,12 +25,12 @@ Description-Content-Type: text/markdown
25
25
  License-File: LICENSE
26
26
  Requires-Dist: fastapi<1,>=0.115
27
27
  Requires-Dist: pydantic<3,>=2.7
28
- Requires-Dist: pydantic-ai<1,>=0.0.18
28
+ Requires-Dist: pydantic-ai<2,>=0.0.18
29
29
  Requires-Dist: uvicorn<1,>=0.30
30
30
  Provides-Extra: dev
31
31
  Requires-Dist: httpx<1,>=0.27; extra == "dev"
32
- Requires-Dist: pytest<9,>=8.2; extra == "dev"
33
- Requires-Dist: pytest-asyncio<1,>=0.23; extra == "dev"
32
+ Requires-Dist: pytest<10,>=8.2; extra == "dev"
33
+ Requires-Dist: pytest-asyncio<2,>=0.23; extra == "dev"
34
34
  Dynamic: license-file
35
35
 
36
36
  # yapi
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pyyapi"
7
- version = "0.3.0"
7
+ version = "0.3.2"
8
8
  description = "Prompt-first declarative HTTP framework on top of FastAPI and PydanticAI"
9
9
  readme = "README.md"
10
10
  license = { text = "MIT" }
@@ -30,15 +30,15 @@ classifiers = [
30
30
  dependencies = [
31
31
  "fastapi>=0.115,<1",
32
32
  "pydantic>=2.7,<3",
33
- "pydantic-ai>=0.0.18,<1",
33
+ "pydantic-ai>=0.0.18,<2",
34
34
  "uvicorn>=0.30,<1",
35
35
  ]
36
36
 
37
37
  [project.optional-dependencies]
38
38
  dev = [
39
39
  "httpx>=0.27,<1",
40
- "pytest>=8.2,<9",
41
- "pytest-asyncio>=0.23,<1",
40
+ "pytest>=8.2,<10",
41
+ "pytest-asyncio>=0.23,<2",
42
42
  ]
43
43
 
44
44
  [project.urls]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyyapi
3
- Version: 0.3.0
3
+ Version: 0.3.2
4
4
  Summary: Prompt-first declarative HTTP framework on top of FastAPI and PydanticAI
5
5
  Author-email: DJJ <shuaiqijianhao@qq.com>
6
6
  License: MIT
@@ -25,12 +25,12 @@ Description-Content-Type: text/markdown
25
25
  License-File: LICENSE
26
26
  Requires-Dist: fastapi<1,>=0.115
27
27
  Requires-Dist: pydantic<3,>=2.7
28
- Requires-Dist: pydantic-ai<1,>=0.0.18
28
+ Requires-Dist: pydantic-ai<2,>=0.0.18
29
29
  Requires-Dist: uvicorn<1,>=0.30
30
30
  Provides-Extra: dev
31
31
  Requires-Dist: httpx<1,>=0.27; extra == "dev"
32
- Requires-Dist: pytest<9,>=8.2; extra == "dev"
33
- Requires-Dist: pytest-asyncio<1,>=0.23; extra == "dev"
32
+ Requires-Dist: pytest<10,>=8.2; extra == "dev"
33
+ Requires-Dist: pytest-asyncio<2,>=0.23; extra == "dev"
34
34
  Dynamic: license-file
35
35
 
36
36
  # yapi
@@ -1,9 +1,9 @@
1
1
  fastapi<1,>=0.115
2
2
  pydantic<3,>=2.7
3
- pydantic-ai<1,>=0.0.18
3
+ pydantic-ai<2,>=0.0.18
4
4
  uvicorn<1,>=0.30
5
5
 
6
6
  [dev]
7
7
  httpx<1,>=0.27
8
- pytest<9,>=8.2
9
- pytest-asyncio<1,>=0.23
8
+ pytest<10,>=8.2
9
+ pytest-asyncio<2,>=0.23
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
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes