Home
last modified time | relevance | path

Searched refs:wheel_path (Results 1 – 25 of 88) sorted by relevance

1234

/dports/devel/py-wheel/wheel-0.36.2/tests/
H A Dtest_wheelfile.py15 def wheel_path(tmpdir): function
38 def test_missing_record(wheel_path): argument
39 with ZipFile(wheel_path, 'w') as zf:
47 with ZipFile(wheel_path, 'w') as zf:
63 with ZipFile(wheel_path, 'w') as zf:
80 with ZipFile(wheel_path, 'w') as zf:
85 with WheelFile(wheel_path) as wf:
94 with WheelFile(wheel_path) as wf:
99 def test_testzip_bad_hash(wheel_path): argument
106 with WheelFile(wheel_path) as wf:
[all …]
/dports/devel/py-maturin/maturin-0.11.3/src/
H A Dbuild_context.rs270 let wheel_path = writer.finish()?; in write_binding_wheel_abi3() localVariable
290 let (wheel_path, tag) = in build_binding_wheel_abi3()
297 wheel_path.display() in build_binding_wheel_abi3()
299 wheels.push((wheel_path, tag)); in build_binding_wheel_abi3()
325 let wheel_path = writer.finish()?; in write_binding_wheel() localVariable
327 wheel_path, in write_binding_wheel()
347 let (wheel_path, tag) = in build_binding_wheels()
355 wheel_path.display() in build_binding_wheels()
358 wheels.push((wheel_path, tag)); in build_binding_wheels()
425 wheels.push((wheel_path, tag)); in build_cffi_wheel()
[all …]
H A Dupload.rs63 pub fn upload(registry: &Registry, wheel_path: &Path) -> Result<(), UploadError> { in upload()
64 let mut wheel = File::open(&wheel_path)?; in upload()
69 let dist = python_pkginfo::Distribution::new(wheel_path) in upload()
70 .map_err(|err| UploadError::PkgInfoError(wheel_path.to_owned(), err))?; in upload()
133 form = form.file("content", &wheel_path)?; in upload()
/dports/finance/electrum/Electrum-4.1.5/packages/pip/_internal/
H A Dwheel_builder.py187 def _verify_one(req, wheel_path): argument
190 w = Wheel(os.path.basename(wheel_path))
198 zf, canonical_name, wheel_path,
236 wheel_path = _build_one_inside_env(
239 if wheel_path and verify:
241 _verify_one(req, wheel_path)
245 return wheel_path
259 wheel_path = build_wheel_pep517(
267 wheel_path = build_wheel_legacy(
276 if wheel_path is not None:
[all …]
/dports/devel/py-pip/pip-20.3.4/src/pip/_internal/
H A Dwheel_builder.py184 def _verify_one(req, wheel_path): argument
187 w = Wheel(os.path.basename(wheel_path))
195 zf, canonical_name, wheel_path,
233 wheel_path = _build_one_inside_env(
236 if wheel_path and verify:
238 _verify_one(req, wheel_path)
242 return wheel_path
256 wheel_path = build_wheel_pep517(
264 wheel_path = build_wheel_legacy(
273 if wheel_path is not None:
[all …]
/dports/www/firefox/firefox-99.0/third_party/python/pip/pip/_internal/
H A Dwheel_builder.py168 def _verify_one(req, wheel_path): argument
171 w = Wheel(os.path.basename(wheel_path))
223 wheel_path = _build_one_inside_env(
226 if wheel_path and verify:
228 _verify_one(req, wheel_path)
232 return wheel_path
255 wheel_path = build_wheel_pep517(
262 wheel_path = build_wheel_legacy(
271 if wheel_path is not None:
272 wheel_name = os.path.basename(wheel_path)
[all …]
/dports/devel/py-qtbuilder/PyQt-builder-1.9.1/pyqtbuild/bundle/
H A Dwheel.py33 def create_wheel(wheel_path, names): argument
36 with zipfile.ZipFile(wheel_path, 'w', compression=zipfile.ZIP_DEFLATED) as zf:
41 def unpack_wheel(wheel_path): argument
45 zf = zipfile.ZipFile(wheel_path)
47 raise UserException("Unable to find '{0}'".format(wheel_path))
H A Dbundle.py36 def bundle(wheel_path, qt_dir, build_tag_suffix, msvc_runtime, openssl, argument
40 wheel_path = os.path.abspath(wheel_path)
47 wheel_name = os.path.basename(wheel_path)
103 unpack_wheel(wheel_path)
135 wheel_path))
/dports/devel/py-pip/pip-20.3.4/tests/functional/
H A Dtest_new_resolver_hashes.py16 wheel_path = create_basic_wheel_for_package(script, "base", "0.1.0")
19 wheel_hash = hashlib.sha256(wheel_path.read_bytes()).hexdigest()
30 wheel_url=path_to_url(wheel_path),
32 wheel_path=wheel_path,
H A Dtest_new_resolver_target.py19 wheel_path = wheel_house.joinpath("fake-1.0-{}.whl".format(wheel_tag))
20 wheel_builder.save_to(wheel_path)
21 return wheel_path
/dports/lang/python311/Python-3.11.0a3/Lib/ensurepip/
H A D__init__.py56 wheel_path = os.path.join(path, filename)
57 packages[name] = _Package(version, None, wheel_path)
167 wheel_path = resources.files("ensurepip") / "_bundled" / wheel_name
168 whl = wheel_path.read_bytes()
171 with open(package.wheel_path, "rb") as fp:
173 wheel_name = os.path.basename(package.wheel_path)
/dports/misc/py-xgboost/xgboost-1.5.1/tests/ci_build/
H A Dinsert_vcomp140.py12 for wheel_path in sorted(glob.glob(sys.argv[1])):
13 m = re.search(r'xgboost-(.*)-py3', wheel_path)
17 with zipfile.ZipFile(wheel_path, 'a') as f:
/dports/misc/xgboost/xgboost-1.5.1/tests/ci_build/
H A Dinsert_vcomp140.py12 for wheel_path in sorted(glob.glob(sys.argv[1])):
13 m = re.search(r'xgboost-(.*)-py3', wheel_path)
17 with zipfile.ZipFile(wheel_path, 'a') as f:
/dports/lang/spidermonkey78/firefox-78.9.0/obj-x86_64-pc-linux-gnu/_virtualenvs/init/lib/python2.7/site-packages/pip/_internal/
H A Dwheel_builder.py203 wheel_path = build_wheel_pep517(
211 wheel_path = build_wheel_legacy(
220 if wheel_path is not None:
221 wheel_name = os.path.basename(wheel_path)
224 wheel_hash, length = hash_file(wheel_path)
225 shutil.move(wheel_path, dest_path)
/dports/devel/py-pipenv/pipenv-2021.5.29/pipenv/patched/notpip/_internal/
H A Dwheel_builder.py200 wheel_path = build_wheel_pep517(
208 wheel_path = build_wheel_legacy(
217 if wheel_path is not None:
218 wheel_name = os.path.basename(wheel_path)
221 wheel_hash, length = hash_file(wheel_path)
222 shutil.move(wheel_path, dest_path)
/dports/audio/x42-plugins-lv2/x42-plugins-20211016/stepseq.lv2/gui/
H A Dbpmwheel.h2 static void wheel_path (cairo_t* cr, int w, int h) { in wheel_path() function
37 wheel_path (cr, w, h); in draw_wheel()
51 wheel_path (cr, w, h); in draw_wheel()
63 wheel_path (cr, w, h); in draw_wheel()
/dports/devel/pyside2/pyside-setup-opensource-src-5.15.2/testing/
H A Dwheel_tester.py132 def install_wheel(wheel_path): argument
133 log.info("Installing wheel: {}".format(wheel_path))
134 exit_code = run_process([sys.executable, "-m", "pip", "install", wheel_path])
137 raise RuntimeError("Error while installing wheel {}".format(wheel_path))
158 wheel_path = files[0]
159 install_wheel(wheel_path)
/dports/devel/pyside2-tools/pyside-setup-opensource-src-5.15.2/testing/
H A Dwheel_tester.py132 def install_wheel(wheel_path): argument
133 log.info("Installing wheel: {}".format(wheel_path))
134 exit_code = run_process([sys.executable, "-m", "pip", "install", wheel_path])
137 raise RuntimeError("Error while installing wheel {}".format(wheel_path))
158 wheel_path = files[0]
159 install_wheel(wheel_path)
/dports/devel/shiboken2/pyside-setup-opensource-src-5.15.2/testing/
H A Dwheel_tester.py132 def install_wheel(wheel_path): argument
133 log.info("Installing wheel: {}".format(wheel_path))
134 exit_code = run_process([sys.executable, "-m", "pip", "install", wheel_path])
137 raise RuntimeError("Error while installing wheel {}".format(wheel_path))
158 wheel_path = files[0]
159 install_wheel(wheel_path)
/dports/math/py-cypari2/cypari2-2.1.2/venv/lib/python3.7/site-packages/wheel/cli/
H A Dpack.py52 wheel_path = os.path.join(dest_dir, '{}-{}.whl'.format(name_version, tagline))
53 with WheelFile(wheel_path, 'w') as wf:
54 print("Repacking wheel as {}...".format(wheel_path), end='')
/dports/devel/py-wheel/wheel-0.36.2/tests/cli/
H A Dtest_unpack.py9 for wheel_path in wheel_paths:
10 unpack(wheel_path, str(tmpdir))
/dports/finance/electrum/Electrum-4.1.5/packages/wheel/cli/
H A Dpack.py73 wheel_path = os.path.join(dest_dir, '{}-{}.whl'.format(name_version, tagline))
74 with WheelFile(wheel_path, 'w') as wf:
75 print("Repacking wheel as {}...".format(wheel_path), end='')
/dports/www/firefox/firefox-99.0/third_party/python/wheel/wheel/cli/
H A Dpack.py73 wheel_path = os.path.join(dest_dir, '{}-{}.whl'.format(name_version, tagline))
74 with WheelFile(wheel_path, 'w') as wf:
75 print("Repacking wheel as {}...".format(wheel_path), end='')
/dports/devel/py-wheel/wheel-0.36.2/src/wheel/cli/
H A Dpack.py73 wheel_path = os.path.join(dest_dir, '{}-{}.whl'.format(name_version, tagline))
74 with WheelFile(wheel_path, 'w') as wf:
75 print("Repacking wheel as {}...".format(wheel_path), end='')
/dports/lang/spidermonkey78/firefox-78.9.0/obj-x86_64-pc-linux-gnu/_virtualenvs/init/lib/python2.7/site-packages/wheel/cli/
H A Dpack.py73 wheel_path = os.path.join(dest_dir, '{}-{}.whl'.format(name_version, tagline))
74 with WheelFile(wheel_path, 'w') as wf:
75 print("Repacking wheel as {}...".format(wheel_path), end='')

1234