Commit 72cec7f 1 parent 1427fc2 commit 72cec7f Copy full SHA for 72cec7f
File tree 2 files changed +3
-8
lines changed
2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 2
2
// Configuration file for RenovateBot: https://docs.renovatebot.com/configuration-options
3
3
extends : [ "config:recommended" , ":semanticCommitTypeAll(build)" ] ,
4
4
ignoreDeps : [
5
- "types-requests" , // Don't update until we can support urllib3 >= 2.0
6
- "urllib3" , // Can't update, see setup.py
7
5
] ,
8
6
labels : [ "dependencies" ] , // For convenient searching in GitHub
9
7
baseBranches : [ "$default" , "/^hotfix\\/.*/" ] ,
Original file line number Diff line number Diff line change @@ -51,11 +51,8 @@ def is_rtd() -> bool:
51
51
"PyYAML" ,
52
52
"pydantic>=2.0.0" ,
53
53
"pyxdg" ,
54
- "requests<2.32.0" ,
55
- "requests-unixsocket" ,
56
- # See: https://github.com/msabramo/requests-unixsocket/pull/69
57
- # When updating to urllib3 v2, also remove the constraint on types-requests.
58
- "urllib3<2" , # keep compatible API
54
+ "requests>=2.32,<3.0" ,
55
+ "requests-unixsocket2>=0.4.0" ,
59
56
]
60
57
61
58
dev_requires = [
@@ -81,7 +78,7 @@ def is_rtd() -> bool:
81
78
"types-Pygments" ,
82
79
"types-pytz" ,
83
80
"types-PyYAML" ,
84
- "types-requests<2.30" , # When removing this constraint, remove from renovate's ignoreDeps
81
+ "types-requests" ,
85
82
"types-setuptools" ,
86
83
]
87
84
You can’t perform that action at this time.
0 commit comments