forked from mlrun/mlrun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies.py
147 lines (130 loc) · 5.23 KB
/
dependencies.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# Copyright 2023 MLRun Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
import typing
def base_requirements() -> typing.List[str]:
return list(_load_dependencies_from_file("requirements.txt"))
def dev_requirements() -> typing.List[str]:
return list(_load_dependencies_from_file("dev-requirements.txt"))
def extra_requirements() -> typing.Dict[str, typing.List[str]]:
# NOTE:
# - These are tested in `automation/package_test/test.py`. If you modify these, make sure to change the
# corresponding line there.
# - We have a copy of these in extras-requirements.txt. If you modify these, make sure to change it
# there as well
extras_require = {
"s3": [
"boto3>=1.24.59,<1.27",
"aiobotocore>=2.4.2,<2.6",
"s3fs>=2023.1,<2023.7",
],
"azure-blob-storage": [
"msrest~=0.6.21",
"azure-core~=1.24",
"azure-storage-blob>=12.13, !=12.18.0",
"adlfs>=2022.2,<2023.5",
"pyopenssl>=23",
],
"azure-key-vault": [
"azure-identity~=1.5",
"azure-keyvault-secrets~=4.2",
"pyopenssl>=23",
],
"bokeh": [
# >=2.4.2 to force having a security fix done in 2.4.2
"bokeh~=2.4, >=2.4.2",
],
# plotly artifact body in 5.12.0 may contain chars that are not encodable in 'latin-1' encoding
# so, it cannot be logged as artifact (raised UnicodeEncode error - ML-3255)
"plotly": ["plotly~=5.4, <5.12.0"],
# used to generate visualization nuclio/serving graph steps
"graphviz": ["graphviz~=0.20.0"],
# google-cloud is mainly used for QA, that is why we are not including it in complete
"google-cloud": [
# because of kfp 1.8.13 requiring google-cloud-storage<2.0.0, >=1.20.0
"google-cloud-storage~=1.20",
"google-cloud-bigquery[pandas, bqstorage]~=3.2",
"google-cloud~=0.34",
],
"google-cloud-storage": ["gcsfs>=2023.1,<2023.7"],
"google-cloud-bigquery": ["google-cloud-bigquery[pandas, bqstorage]~=3.2"],
"kafka": [
"kafka-python~=2.0",
# because confluent kafka supports avro format by default
"avro~=1.11",
],
"redis": ["redis~=4.3"],
"databricks-sdk": ["databricks-sdk~=0.3.0"],
"sqlalchemy": ["sqlalchemy~=1.4"],
}
# see above why we are excluding google-cloud
exclude_from_complete = ["bokeh", "google-cloud"]
api_deps = list(
_load_dependencies_from_file("dockerfiles/mlrun-api/requirements.txt")
)
extras_require.update(
{
"api": api_deps,
"all": _get_extra_dependencies(extras_require=extras_require),
"complete": _get_extra_dependencies(
exclude=exclude_from_complete,
extras_require=extras_require,
),
"complete-api": _get_extra_dependencies(
exclude=exclude_from_complete,
base_deps=api_deps,
extras_require=extras_require,
),
}
)
return extras_require
def _is_ignored(line: str) -> bool:
line = line.strip()
return (not line) or (line[0] == "#") or line.startswith("git+")
def _extract_package_from_egg(line: str) -> str:
"""Extract egg name from line"""
if "#egg=" in line:
_, package = line.split("#egg=")
return f"{package} @ {line}"
return line
def _load_dependencies_from_file(path: str, parent_dir: str = None) -> typing.List[str]:
"""Load dependencies from requirements file"""
parent_dir = parent_dir or os.path.dirname(__file__)
with open(f"{parent_dir}/{path}") as fp:
return [
_extract_package_from_egg(line.strip())
for line in fp
if not _is_ignored(line)
]
def _get_extra_dependencies(
include: typing.List[str] = None,
exclude: typing.List[str] = None,
base_deps: typing.List[str] = None,
extras_require: typing.Dict[str, typing.List[str]] = None,
) -> typing.List[str]:
"""Get list of dependencies for given extras categories
:param include: list of extras categories to include
:param exclude: list of extras categories to exclude
:param base_deps: list of base dependencies to include
:return: list of dependencies
"""
include = include or []
exclude = exclude or []
base_deps = base_deps or []
extras_require = extras_require or {}
extra_deps = set(base_deps)
for extra_key, requirement_list in extras_require.items():
if extra_key not in exclude and (not include or extra_key in include):
extra_deps.update(requirement_list)
return list(sorted(extra_deps))