Commit fc837f4
committed
Add lower bounds to the remaining runtime dependencies
requests, python-dotenv, webdriver-manager and defusedxml were declared
unbounded, so an installer could resolve any version — including ones
predating known advisories — whenever another constraint in the environment
held them back.
Floors chosen from evidence rather than convenience:
- requests>=2.33.0 is the first release carrying the extract_zipped_paths
fix (GHSA-gc5v-m9x4-r6x2).
- webdriver-manager>=4.0.0 is the line this package is developed against.
3.9.1 does expose DriverCacheManager and the cache_manager kwarg the
wrapper uses, so this is a policy floor, not an API requirement.
- python-dotenv>=1.0.0 and defusedxml>=0.7.1 are the stable current lines.
These are minimums only; no upper bounds, so the package stays
co-installable. faker and sqlalchemy are deliberately left alone — both are
optional extras imported lazily behind guards and are absent from the
package metadata, so a floor there would add friction without benefit.1 parent 6998d7b commit fc837f4
4 files changed
Lines changed: 18 additions & 10 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| 16 | + | |
16 | 17 | | |
17 | 18 | | |
18 | | - | |
19 | | - | |
20 | | - | |
21 | | - | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
22 | 23 | | |
23 | 24 | | |
24 | 25 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
21 | 25 | | |
22 | 26 | | |
23 | | - | |
24 | | - | |
25 | | - | |
26 | | - | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
27 | 34 | | |
28 | 35 | | |
29 | 36 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
0 commit comments