mm-http 0.2.0__tar.gz → 0.2.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.
- {mm_http-0.2.0 → mm_http-0.2.2}/PKG-INFO +4 -4
- {mm_http-0.2.0 → mm_http-0.2.2}/pyproject.toml +13 -13
- {mm_http-0.2.0 → mm_http-0.2.2}/uv.lock +421 -327
- {mm_http-0.2.0 → mm_http-0.2.2}/.claude/settings.local.json +0 -0
- {mm_http-0.2.0 → mm_http-0.2.2}/.gitignore +0 -0
- {mm_http-0.2.0 → mm_http-0.2.2}/.pre-commit-config.yaml +0 -0
- {mm_http-0.2.0 → mm_http-0.2.2}/CLAUDE.md +0 -0
- {mm_http-0.2.0 → mm_http-0.2.2}/README.md +0 -0
- {mm_http-0.2.0 → mm_http-0.2.2}/justfile +0 -0
- {mm_http-0.2.0 → mm_http-0.2.2}/src/mm_http/__init__.py +0 -0
- {mm_http-0.2.0 → mm_http-0.2.2}/src/mm_http/http_request.py +0 -0
- {mm_http-0.2.0 → mm_http-0.2.2}/src/mm_http/http_request_sync.py +0 -0
- {mm_http-0.2.0 → mm_http-0.2.2}/src/mm_http/py.typed +0 -0
- {mm_http-0.2.0 → mm_http-0.2.2}/src/mm_http/response.py +0 -0
- {mm_http-0.2.0 → mm_http-0.2.2}/tests/__init__.py +0 -0
- {mm_http-0.2.0 → mm_http-0.2.2}/tests/conftest.py +0 -0
- {mm_http-0.2.0 → mm_http-0.2.2}/tests/test_http_request.py +0 -0
- {mm_http-0.2.0 → mm_http-0.2.2}/tests/test_http_request_sync.py +0 -0
- {mm_http-0.2.0 → mm_http-0.2.2}/tests/test_http_response.py +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mm-http
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Requires-Python: >=3.13
|
|
5
|
-
Requires-Dist: aiohttp-socks~=0.
|
|
6
|
-
Requires-Dist: aiohttp~=3.13.
|
|
5
|
+
Requires-Dist: aiohttp-socks~=0.11.0
|
|
6
|
+
Requires-Dist: aiohttp~=3.13.3
|
|
7
7
|
Requires-Dist: mm-result~=0.1.2
|
|
8
|
-
Requires-Dist: pydantic~=2.12.
|
|
8
|
+
Requires-Dist: pydantic~=2.12.5
|
|
9
9
|
Requires-Dist: pydash~=8.0.5
|
|
10
10
|
Requires-Dist: requests[socks]~=2.32.5
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "mm-http"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.2"
|
|
4
4
|
description = ""
|
|
5
5
|
requires-python = ">=3.13"
|
|
6
6
|
dependencies = [
|
|
7
7
|
"mm-result~=0.1.2",
|
|
8
8
|
"requests[socks]~=2.32.5",
|
|
9
|
-
"aiohttp~=3.13.
|
|
10
|
-
"aiohttp-socks~=0.
|
|
9
|
+
"aiohttp~=3.13.3",
|
|
10
|
+
"aiohttp-socks~=0.11.0",
|
|
11
11
|
"pydash~=8.0.5",
|
|
12
|
-
"pydantic~=2.12.
|
|
12
|
+
"pydantic~=2.12.5",
|
|
13
13
|
]
|
|
14
14
|
|
|
15
15
|
[build-system]
|
|
@@ -18,17 +18,17 @@ build-backend = "hatchling.build"
|
|
|
18
18
|
|
|
19
19
|
[dependency-groups]
|
|
20
20
|
dev = [
|
|
21
|
-
"pytest~=
|
|
22
|
-
"pytest-asyncio~=1.
|
|
21
|
+
"pytest~=9.0.2",
|
|
22
|
+
"pytest-asyncio~=1.3.0",
|
|
23
23
|
"pytest-xdist~=3.8.0",
|
|
24
24
|
"pytest-httpserver~=1.1.3",
|
|
25
|
-
"ruff~=0.14.
|
|
26
|
-
"mypy~=1.
|
|
27
|
-
"pip-audit~=2.
|
|
28
|
-
"bandit~=1.
|
|
29
|
-
"pre-commit~=4.
|
|
30
|
-
"types-requests~=2.32.4.
|
|
31
|
-
"python-dotenv~=1.
|
|
25
|
+
"ruff~=0.14.10",
|
|
26
|
+
"mypy~=1.19.1",
|
|
27
|
+
"pip-audit~=2.10.0",
|
|
28
|
+
"bandit~=1.9.2",
|
|
29
|
+
"pre-commit~=4.5.1",
|
|
30
|
+
"types-requests~=2.32.4.20260107",
|
|
31
|
+
"python-dotenv~=1.2.1",
|
|
32
32
|
]
|
|
33
33
|
|
|
34
34
|
[tool.mypy]
|