Skip to content

Commit f2a1ce9

Browse files
committed
chore: use url3
1 parent 0277728 commit f2a1ce9

8 files changed

+8
-8
lines changed

.cirrus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020

2121
PYTHON_VERSION_MATRIX: &PYTHON_VERSION_MATRIX
2222
- VERSION: 3.11
23-
- VERSION: 3.6
23+
# - VERSION: 3.6
2424
# - VERSION: 3.7
2525
# - VERSION: 3.8
2626
# - VERSION: 3.9

examples/pacts/http-consumer-1-http-provider.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
],
138138
"metadata": {
139139
"pact-python": {
140-
"version": "2.0.1b0"
140+
"version": "3.0.0b0"
141141
},
142142
"pactRust": {
143143
"ffi": "0.4.7",

examples/pacts/http-consumer-2-http-provider.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
],
2626
"metadata": {
2727
"pact-python": {
28-
"version": "2.0.1b0"
28+
"version": "3.0.0b0"
2929
},
3030
"pactRust": {
3131
"ffi": "0.4.7",

examples/pacts/message-consumer-2-message-provider.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
],
3434
"metadata": {
3535
"pact-python": {
36-
"version": "2.0.1b0"
36+
"version": "3.0.0b0"
3737
},
3838
"pactRust": {
3939
"ffi": "0.4.7",

pact/message_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import requests
66
from requests.adapters import HTTPAdapter
7-
from requests.packages.urllib3 import Retry
7+
from urllib3 import Retry
88
from multiprocessing import Process
99
from pact.verifier import Verifier
1010
from .http_proxy import run_proxy

pact/message_provider_v3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import requests
66
from requests.adapters import HTTPAdapter
7-
from requests.packages.urllib3 import Retry
7+
from urllib3 import Retry
88
from multiprocessing import Process
99
from pact.ffi.verifier import VerifyResult
1010
from pact.verifier_v3 import VerifierV3

pact/pact.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import psutil
99
import requests
1010
from requests.adapters import HTTPAdapter
11-
from requests.packages.urllib3 import Retry
11+
from urllib3 import Retry
1212

1313
from .broker import Broker
1414
from .constants import MOCK_SERVICE_PATH

pacts/http-consumer-1-http-provider.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
],
137137
"metadata": {
138138
"pact-python": {
139-
"version": "2.0.1b0"
139+
"version": "3.0.0b0"
140140
},
141141
"pactRust": {
142142
"ffi": "0.4.7",

0 commit comments

Comments
 (0)