File tree 3 files changed +9
-7
lines changed
3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 21
21
from google .auth .transport .requests import Request
22
22
import google .oauth2 .credentials
23
23
import google .oauth2 .service_account
24
- import requests_toolbelt .adapters .appengine
24
+ # AIP-8457(talebz): WFSDK requests-toolbelt dependency breaks KFNB "pip install poetry"
25
+ # import requests_toolbelt.adapters.appengine
25
26
from webbrowser import open_new_tab
26
27
import requests
27
28
import json
Original file line number Diff line number Diff line change 10
10
import requests
11
11
import tempfile
12
12
from typing import Callable , Iterable
13
- from uritemplate import URITemplate
13
+ # AIP-8457(talebz): WFSDK requests-toolbelt dependency breaks KFNB "pip install poetry"
14
+ # from uritemplate import URITemplate
14
15
from . import _components as comp
15
16
from .structures import ComponentReference
16
17
from ._key_value_store import KeyValueStore
Original file line number Diff line number Diff line change 21
21
""" ,
22
22
install_requires = [
23
23
"requests" ,
24
- "urllib3<2.0.0" , # see requests break https://github.com/kubeflow/pipelines/pull/9323
24
+ # "urllib3<2.0.0", # see requests break https://github.com/kubeflow/pipelines/pull/9323
25
25
"boto3" ,
26
26
"pylint" ,
27
27
# required for KFP
28
28
"absl-py>=0.9,<=0.11" ,
29
29
"Deprecated>=1.2.7,<2" ,
30
30
"docstring-parser>=0.7.3,<1" ,
31
31
"fire>=0.3.1,<1" ,
32
- "googleapis-common-protos>=1.6.0,<2" ,
32
+ # "googleapis-common-protos>=1.6.0,<2",
33
33
"jsonschema>=4.19.2,<5" ,
34
34
"kfp-pipeline-spec>=0.1.13,<0.2.0" ,
35
- "kfp-server-api>=1.1.2,<2.0.0" ,
35
+ # "kfp-server-api>=1.1.2,<2.0.0",
36
36
"kubernetes>=8.0.0,<27" ,
37
37
"protobuf>=3.13.0,<4" ,
38
38
"pyyaml>=5.3,<7" ,
39
- "requests-toolbelt>=0.8.0,<1" ,
40
- "uritemplate>=3.0.1,<4" ,
39
+ # "requests-toolbelt>=0.8.0,<1",
40
+ # "uritemplate>=3.0.1,<4",
41
41
],
42
42
tests_require = ["coverage" ],
43
43
extras_require = {
You can’t perform that action at this time.
0 commit comments