You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(pypi): split out more utils and start passing 'abi_os_arch' around (#2069)
This is extra preparation needed for #2059.
Summary:
- Create `pypi_repo_utils` for more ergonomic handling of Python in repo
context.
- Split the resolution of requirements files to platforms into a
separate function
to make the testing easier. This also allows more validation that was
realized
that there is a need for in the WIP feature PR.
- Make the code more robust about the assumption of the target platform
label.
Work towards #260, #1105, #1868.
requirements_by_platform (label_keyed_string_dict): a way to have
159
97
different package versions (or different packages) for different
160
98
os, arch combinations.
161
-
requirements_osx (label): The requirements file for the osx OS.
162
-
requirements_linux (label): The requirements file for the linux OS.
163
-
requirements_lock (label): The requirements file for all OSes, or used as a fallback.
164
-
requirements_windows (label): The requirements file for windows OS.
165
99
extra_pip_args (string list): Extra pip arguments to perform extra validations and to
166
100
be joined with args fined in files.
167
101
get_index_urls: Callable[[ctx, list[str]], dict], a callable to get all
@@ -186,91 +120,11 @@ def parse_requirements(
186
120
187
121
The second element is extra_pip_args should be passed to `whl_library`.
188
122
"""
189
-
ifnot (
190
-
requirements_lockor
191
-
requirements_linuxor
192
-
requirements_osxor
193
-
requirements_windowsor
194
-
requirements_by_platform
195
-
):
196
-
fail_fn(
197
-
"A 'requirements_lock' attribute must be specified, a platform-specific lockfiles "+
198
-
"via 'requirements_by_platform' or an os-specific lockfiles must be specified "+
199
-
"via 'requirements_*' attributes",
200
-
)
201
-
returnNone
202
-
203
-
platforms=_platforms_from_args(extra_pip_args)
204
-
205
-
ifplatforms:
206
-
lock_files= [
207
-
f
208
-
forfin [
209
-
requirements_lock,
210
-
requirements_linux,
211
-
requirements_osx,
212
-
requirements_windows,
213
-
] +list(requirements_by_platform.keys())
214
-
iff
215
-
]
216
-
217
-
iflen(lock_files) >1:
218
-
# If the --platform argument is used, check that we are using
219
-
# a single `requirements_lock` file instead of the OS specific ones as that is
220
-
# the only correct way to use the API.
221
-
fail_fn("only a single 'requirements_lock' file can be used when using '--platform' pip argument, consider specifying it via 'requirements_lock' attribute")
0 commit comments