Skip to content

Commit f939493

Browse files
Merge pull request #130 from bigpick/unpin-requests-dep
chore: Unpin requests dep, pin urllib3 dep
2 parents 73e43c6 + d60d01b commit f939493

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.secrets.baseline

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"files": "test_data/.*|tests/.*|^.secrets.baseline$",
44
"lines": null
55
},
6-
"generated_at": "2023-04-24T21:27:43Z",
6+
"generated_at": "2023-05-25T14:44:17Z",
77
"plugins_used": [
88
{
99
"name": "AWSKeyDetector"

detect_secrets/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '0.13.1+ibm.60.dss'
1+
VERSION = '0.13.1+ibm.61.dss'

requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pip>=21.1
2-
urllib3==1.26.15
2+
urllib3<2.0.0
33
coverage>=6.0b1
44
certifi>=2022.12.07
55
flake8

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
keywords=['secret-management', 'pre-commit', 'security', 'entropy-checks'],
2525
install_requires=[
2626
'pyyaml',
27-
'requests==2.29.0', # requests v2.30.0 is broken
27+
'requests',
28+
'urllib3<2.0.0',
2829
'boxsdk[jwt]',
2930
'packaging',
3031
'tabulate',

user-config/.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repos:
1010
# You are encouraged to use static refs such as tags, instead of branch name
1111
#
1212
# Running "pre-commit autoupdate" automatically updates rev to latest tag
13-
rev: 0.13.1+ibm.60.dss
13+
rev: 0.13.1+ibm.61.dss
1414
hooks:
1515
- id: detect-secrets # pragma: whitelist secret
1616
# Add options for detect-secrets-hook binary. You can run `detect-secrets-hook --help` to list out all possible options.

0 commit comments

Comments
 (0)