Commit e9c6265
authored
fix(google-auth): add bounds for urllib3 and packaging dependencies (#17647)
1. **`setup.py`**:
- Added version bounds for `urllib3` and `packaging` in
`urllib3_extra_require`:
```python
urllib3_extra_require = [
"urllib3 >= 1.26.15, < 3.0.0",
"packaging >= 20.0",
]
```
- Set `requests >= 2.30.0, < 3.0.0` for Python 3.10+ compatibility.
- Resolved and removed TODO comment for issue #1739.
2. **`testing/constraints-3.10.txt`**:
- Added `requests==2.30.0`, `urllib3==1.26.15`, and `packaging==20.0` to
lower-bound CI test constraints.
Fixes #15155 🦕1 parent 6da41e8 commit e9c6265
2 files changed
Lines changed: 9 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
30 | | - | |
| 30 | + | |
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
| |||
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
40 | | - | |
41 | | - | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
42 | 44 | | |
43 | 45 | | |
44 | 46 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
| 12 | + | |
13 | 13 | | |
14 | | - | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
0 commit comments