fastapi_swagger2 0.3.3__tar.gz → 0.3.4__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.
- {fastapi_swagger2-0.3.3 → fastapi_swagger2-0.3.4}/PKG-INFO +4 -4
- {fastapi_swagger2-0.3.3 → fastapi_swagger2-0.3.4}/README.md +1 -0
- {fastapi_swagger2-0.3.3 → fastapi_swagger2-0.3.4}/pyproject.toml +3 -4
- fastapi_swagger2-0.3.4/src/fastapi_swagger2/_version.py +1 -0
- fastapi_swagger2-0.3.3/src/fastapi_swagger2/_version.py +0 -1
- {fastapi_swagger2-0.3.3 → fastapi_swagger2-0.3.4}/LICENSE +0 -0
- {fastapi_swagger2-0.3.3 → fastapi_swagger2-0.3.4}/src/fastapi_swagger2/__init__.py +0 -0
- {fastapi_swagger2-0.3.3 → fastapi_swagger2-0.3.4}/src/fastapi_swagger2/models.py +0 -0
- {fastapi_swagger2-0.3.3 → fastapi_swagger2-0.3.4}/src/fastapi_swagger2/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: fastapi_swagger2
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.4
|
|
4
4
|
Summary: Swagger2 support for FastAPI framework
|
|
5
5
|
Author: Viraj Kanwade
|
|
6
6
|
Author-email: Viraj Kanwade <virajk.oib@gmail.com>
|
|
@@ -43,14 +43,13 @@ Classifier: Framework :: Pydantic :: 1
|
|
|
43
43
|
Classifier: Intended Audience :: Developers
|
|
44
44
|
Classifier: License :: OSI Approved :: MIT License
|
|
45
45
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
46
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
47
46
|
Classifier: Programming Language :: Python :: 3.10
|
|
48
47
|
Classifier: Programming Language :: Python :: 3.11
|
|
49
48
|
Classifier: Programming Language :: Python :: 3.12
|
|
50
49
|
Classifier: Programming Language :: Python :: 3.13
|
|
51
50
|
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
|
|
52
51
|
Classifier: Topic :: Internet :: WWW/HTTP
|
|
53
|
-
Requires-Dist: fastapi>=0.
|
|
52
|
+
Requires-Dist: fastapi>=0.129.0
|
|
54
53
|
Requires-Dist: httpx>=0.28.1 ; extra == 'all'
|
|
55
54
|
Requires-Dist: ruff==0.14.10 ; extra == 'dev'
|
|
56
55
|
Requires-Dist: pytest>=7.0.0,<9.0.0 ; extra == 'test'
|
|
@@ -58,7 +57,7 @@ Requires-Dist: coverage[toml]>=6.0,<8.0 ; extra == 'test'
|
|
|
58
57
|
Requires-Dist: ty ; extra == 'test'
|
|
59
58
|
Requires-Dist: ruff==0.14.10 ; extra == 'test'
|
|
60
59
|
Requires-Dist: httpx>=0.28.1 ; extra == 'test'
|
|
61
|
-
Requires-Python: >=3.
|
|
60
|
+
Requires-Python: >=3.10
|
|
62
61
|
Project-URL: Homepage, https://github.com/virajkanwade/fastapi_swagger2
|
|
63
62
|
Project-URL: Documentation, https://github.com/virajkanwade/fastapi_swagger2
|
|
64
63
|
Provides-Extra: all
|
|
@@ -99,6 +98,7 @@ Python 3.9+
|
|
|
99
98
|
* 0.3.1 - FastAPI >= 0.123.9, <= 0.127.1 + Pydantic v1/v2 (Since FastAPI 0.126.1, Pydantic v1 is deprecated)
|
|
100
99
|
* 0.3.2 - FastAPI >= 0.128.0, <= 0.128.3
|
|
101
100
|
* 0.3.3 - FastAPI >= 0.128.4, <= 0.128.8 (FastAPI has dropped Python 3.9 support since 0.129.1)
|
|
101
|
+
* 0.3.4 - FastAPI >= 0.129.0 (last tested against 0.133.1)
|
|
102
102
|
|
|
103
103
|
## Installation
|
|
104
104
|
|
|
@@ -31,6 +31,7 @@ Python 3.9+
|
|
|
31
31
|
* 0.3.1 - FastAPI >= 0.123.9, <= 0.127.1 + Pydantic v1/v2 (Since FastAPI 0.126.1, Pydantic v1 is deprecated)
|
|
32
32
|
* 0.3.2 - FastAPI >= 0.128.0, <= 0.128.3
|
|
33
33
|
* 0.3.3 - FastAPI >= 0.128.4, <= 0.128.8 (FastAPI has dropped Python 3.9 support since 0.129.1)
|
|
34
|
+
* 0.3.4 - FastAPI >= 0.129.0 (last tested against 0.133.1)
|
|
34
35
|
|
|
35
36
|
## Installation
|
|
36
37
|
|
|
@@ -4,10 +4,10 @@ build-backend = "uv_build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "fastapi_swagger2"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.4"
|
|
8
8
|
description = "Swagger2 support for FastAPI framework"
|
|
9
9
|
readme = "README.md"
|
|
10
|
-
requires-python = ">=3.
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
11
|
license = { file="LICENSE" }
|
|
12
12
|
authors = [
|
|
13
13
|
{ name = "Viraj Kanwade", email = "virajk.oib@gmail.com" },
|
|
@@ -31,7 +31,6 @@ classifiers = [
|
|
|
31
31
|
"Intended Audience :: Developers",
|
|
32
32
|
"License :: OSI Approved :: MIT License",
|
|
33
33
|
"Programming Language :: Python :: 3 :: Only",
|
|
34
|
-
"Programming Language :: Python :: 3.9",
|
|
35
34
|
"Programming Language :: Python :: 3.10",
|
|
36
35
|
"Programming Language :: Python :: 3.11",
|
|
37
36
|
"Programming Language :: Python :: 3.12",
|
|
@@ -40,7 +39,7 @@ classifiers = [
|
|
|
40
39
|
"Topic :: Internet :: WWW/HTTP",
|
|
41
40
|
]
|
|
42
41
|
dependencies = [
|
|
43
|
-
"fastapi >=0.
|
|
42
|
+
"fastapi >=0.129.0",
|
|
44
43
|
]
|
|
45
44
|
|
|
46
45
|
[project.urls]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.3.4"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.3.3"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|