mm-http 0.2.1__tar.gz → 0.2.3__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.
@@ -14,3 +14,4 @@ pip-wheel-metadata
14
14
  /build
15
15
  /tmp
16
16
  .DS_Store
17
+ requirements.txt
mm_http-0.2.3/ADR.md ADDED
@@ -0,0 +1,3 @@
1
+ # Architecture Decision Records
2
+
3
+ Key design decisions for this project. Read this before suggesting changes.
@@ -11,3 +11,9 @@
11
11
  4. **Lint after changes** - After making code changes, always run `just lint` to verify code quality and fix any linter issues.
12
12
 
13
13
  5. **No disabling linter rules** - Never use special disabling comments (like `# noqa`, `# type: ignore`, `# ruff: noqa`, etc.) to turn off linter rules without explicit permission. If you believe a rule should be disabled, ask first.
14
+
15
+ ## Required Reading
16
+
17
+ Before working on this codebase, read these documents:
18
+ 1. `README.md` - Project overview and API
19
+ 2. `ADR.md` - Architectural decisions and rationale
@@ -1,10 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mm-http
3
- Version: 0.2.1
3
+ Version: 0.2.3
4
4
  Requires-Python: >=3.13
5
- Requires-Dist: aiohttp-socks~=0.10.1
6
- Requires-Dist: aiohttp~=3.13.2
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.3
8
+ Requires-Dist: pydantic~=2.12.5
9
9
  Requires-Dist: pydash~=8.0.5
10
10
  Requires-Dist: requests[socks]~=2.32.5
11
+ Requires-Dist: urllib3~=2.6.3
@@ -16,6 +16,7 @@ test:
16
16
 
17
17
  lint: format pre-commit
18
18
  uv run ruff check src tests
19
+ uv run ty check
19
20
  uv run mypy src
20
21
 
21
22
  audit:
@@ -1,15 +1,16 @@
1
1
  [project]
2
2
  name = "mm-http"
3
- version = "0.2.1"
3
+ version = "0.2.3"
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.2",
10
- "aiohttp-socks~=0.10.1",
9
+ "aiohttp~=3.13.3",
10
+ "aiohttp-socks~=0.11.0",
11
11
  "pydash~=8.0.5",
12
- "pydantic~=2.12.3",
12
+ "pydantic~=2.12.5",
13
+ "urllib3~=2.6.3", # CVE-2026-21441
13
14
  ]
14
15
 
15
16
  [build-system]
@@ -18,17 +19,18 @@ build-backend = "hatchling.build"
18
19
 
19
20
  [dependency-groups]
20
21
  dev = [
21
- "pytest~=8.4.2",
22
- "pytest-asyncio~=1.2.0",
22
+ "pytest~=9.0.2",
23
+ "pytest-asyncio~=1.3.0",
23
24
  "pytest-xdist~=3.8.0",
24
25
  "pytest-httpserver~=1.1.3",
25
- "ruff~=0.14.2",
26
- "mypy~=1.18.2",
27
- "pip-audit~=2.9.0",
28
- "bandit~=1.8.6",
29
- "pre-commit~=4.3.0",
30
- "types-requests~=2.32.4.20250913",
26
+ "ruff~=0.14.11",
27
+ "mypy~=1.19.1",
28
+ "pip-audit~=2.10.0",
29
+ "bandit~=1.9.2",
30
+ "pre-commit~=4.5.1",
31
+ "types-requests~=2.32.4.20260107",
31
32
  "python-dotenv~=1.2.1",
33
+ "ty~=0.0.10",
32
34
  ]
33
35
 
34
36
  [tool.mypy]
@@ -75,6 +77,14 @@ classmethod-decorators = ["field_validator"]
75
77
  quote-style = "double"
76
78
  indent-style = "space"
77
79
 
80
+ [tool.ty.environment]
81
+ python-version = "3.13"
82
+ [[tool.ty.overrides]]
83
+ include = ["tests/**"]
84
+ [tool.ty.overrides.rules]
85
+ possibly-missing-attribute = "ignore"
86
+
87
+
78
88
  [tool.bandit]
79
89
  exclude_dirs = ["tests"]
80
90
  skips = ["B311"]