Home
last modified time | relevance | path

Searched refs:install_req (Results 1 – 25 of 49) sorted by relevance

12

/dports/finance/electrum/Electrum-4.1.5/packages/pip/_internal/req/
H A Dreq_set.py56 assert not install_req.name
61 assert install_req.name
68 install_req, # type: InstallRequirement argument
91 install_req.name, install_req.markers,
99 if install_req.link and install_req.link.is_wheel:
115 if not install_req.name:
117 return [install_req], None
135 .format(install_req, existing_req, install_req.name)
143 return [install_req], install_req
151 install_req.link and
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/obj-x86_64-pc-linux-gnu/_virtualenvs/init/lib/python2.7/site-packages/pip/_internal/req/
H A Dreq_set.py57 assert not install_req.name
62 assert install_req.name
69 install_req, # type: InstallRequirement argument
92 install_req.name, install_req.markers,
100 if install_req.link and install_req.link.is_wheel:
116 if not install_req.name:
118 return [install_req], None
136 .format(install_req, existing_req, install_req.name)
144 return [install_req], install_req
152 install_req.link and
[all …]
/dports/devel/py-pip/pip-20.3.4/src/pip/_internal/req/
H A Dreq_set.py58 assert not install_req.name
63 assert install_req.name
70 install_req, # type: InstallRequirement argument
93 install_req.name, install_req.markers,
101 if install_req.link and install_req.link.is_wheel:
117 if not install_req.name:
119 return [install_req], None
137 .format(install_req, existing_req, install_req.name)
145 return [install_req], install_req
153 install_req.link and
[all …]
/dports/www/firefox/firefox-99.0/third_party/python/pip/pip/_internal/req/
H A Dreq_set.py47 assert not install_req.name
51 assert install_req.name
80 install_req.name, install_req.markers,
88 if install_req.link and install_req.link.is_wheel:
104 if not install_req.name:
110 install_req.name)
120 install_req.req and
126 .format(install_req, existing_req, install_req.name)
134 return [install_req], install_req
142 install_req.link and
[all …]
/dports/devel/py-pipenv/pipenv-2021.5.29/pipenv/patched/notpip/_internal/req/
H A Dreq_set.py66 assert not install_req.name
69 def add_named_requirement(self, install_req): argument
71 assert install_req.name
78 install_req, # type: InstallRequirement argument
101 install_req.name, install_req.markers,
109 if install_req.link and install_req.link.is_wheel:
126 if not install_req.name:
128 return [install_req], None
145 % (install_req, existing_req, install_req.name)
153 return [install_req], install_req
[all …]
/dports/math/py-cypari2/cypari2-2.1.2/venv/lib/python3.7/site-packages/pip/_internal/req/
H A Dreq_set.py53 install_req, # type: InstallRequirement argument
72 name = install_req.name
78 name, install_req.markers,
86 if install_req.link and install_req.link.is_wheel:
87 wheel = Wheel(install_req.link.filename)
105 return [install_req], None
122 % (install_req, existing_req, name)
128 self.requirements[name] = install_req
133 return [install_req], install_req
141 install_req.link and
[all …]
/dports/devel/py-pip/pip-20.3.4/tests/unit/
H A Dtest_req_install.py79 assert isinstance(install_req, InstallRequirement)
80 assert install_req.link.url == wheel_url
81 assert install_req.req.url == wheel_url
82 assert install_req.comes_from is None
83 assert install_req.is_wheel
102 install_req = install_req_from_req_string(
106 assert isinstance(install_req, InstallRequirement)
107 assert install_req.comes_from.link is None
108 assert install_req.link.url == wheel_url
109 assert install_req.req.url == wheel_url
[all …]
/dports/math/py-cypari2/cypari2-2.1.2/venv/lib/python3.7/site-packages/pip/_internal/distributions/
H A D__init__.py11 def make_distribution_for_install_requirement(install_req): argument
16 if install_req.editable:
17 return SourceDistribution(install_req)
19 if install_req.link and install_req.is_wheel:
20 return WheelDistribution(install_req)
23 return SourceDistribution(install_req)
/dports/devel/py-pipenv/pipenv-2021.5.29/pipenv/patched/notpip/_internal/operations/install/
H A Dlegacy.py27 install_req, # type: InstallRequirement argument
44 install_req.options.get('global_options', [])
46 install_req.options.get('install_options', [])
53 install_req.setup_py_path,
62 no_user_config=install_req.isolated,
67 "Running setup.py install for {}".format(install_req.name)
69 with indent_log(), install_req.build_env:
72 cwd=install_req.unpacked_source_directory,
78 install_req.install_succeeded = True
104 ).format(install_req),
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/python/pipenv/pipenv/vendor/pip9/req/
H A Dreq_set.py231 name = install_req.name
235 install_req.markers)
240 if install_req.link and install_req.link.is_wheel:
241 wheel = Wheel(install_req.link.filename)
248 install_req.as_egg = self.as_egg
250 install_req.target_dir = self.target_dir
251 install_req.pycompile = self.pycompile
257 return [install_req]
276 result = [install_req]
301 install_req = existing_req
[all …]
/dports/www/firefox/firefox-99.0/third_party/python/pip/pip/_internal/distributions/
H A D__init__.py8 install_req: InstallRequirement,
13 if install_req.editable:
14 return SourceDistribution(install_req)
17 if install_req.is_wheel:
18 return WheelDistribution(install_req)
21 return SourceDistribution(install_req)
/dports/finance/electrum/Electrum-4.1.5/packages/pip/_internal/distributions/
H A D__init__.py10 def make_distribution_for_install_requirement(install_req): argument
16 if install_req.editable:
17 return SourceDistribution(install_req)
20 if install_req.is_wheel:
21 return WheelDistribution(install_req)
24 return SourceDistribution(install_req)
/dports/lang/spidermonkey78/firefox-78.9.0/obj-x86_64-pc-linux-gnu/_virtualenvs/init/lib/python2.7/site-packages/pip/_internal/distributions/
H A D__init__.py10 def make_distribution_for_install_requirement(install_req): argument
16 if install_req.editable:
17 return SourceDistribution(install_req)
20 if install_req.is_wheel:
21 return WheelDistribution(install_req)
24 return SourceDistribution(install_req)
/dports/devel/py-pip/pip-20.3.4/src/pip/_internal/distributions/
H A D__init__.py10 def make_distribution_for_install_requirement(install_req): argument
16 if install_req.editable:
17 return SourceDistribution(install_req)
20 if install_req.is_wheel:
21 return WheelDistribution(install_req)
24 return SourceDistribution(install_req)
/dports/devel/py-pipenv/pipenv-2021.5.29/pipenv/patched/notpip/_internal/distributions/
H A D__init__.py10 def make_distribution_for_install_requirement(install_req): argument
16 if install_req.editable:
17 return SourceDistribution(install_req)
20 if install_req.is_wheel:
21 return WheelDistribution(install_req)
24 return SourceDistribution(install_req)
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/python/pipenv/pipenv/patched/notpip/req/
H A Dreq_set.py236 name = install_req.name
240 install_req.markers)
245 if install_req.link and install_req.link.is_wheel:
246 wheel = Wheel(install_req.link.filename)
253 install_req.as_egg = self.as_egg
255 install_req.target_dir = self.target_dir
256 install_req.pycompile = self.pycompile
262 return [install_req]
281 result = [install_req]
306 install_req = existing_req
[all …]
/dports/sysutils/py-salt/salt-3004.1/salt/states/
H A Dpip_state.py193 install_req = _from_line(pkg)
201 install_req = _from_line(pkg.split("{}+".format(vcs))[-1])
204 install_req = _from_line(pkg)
218 if install_req.req is None:
227 ret["prefix"] = install_req.req.project_name
228 ret["version_spec"] = install_req.req.specs
230 ret["prefix"] = re.sub("[^A-Za-z0-9.]+", "-", install_req.name)
231 if hasattr(install_req, "specifier"):
232 specifier = install_req.specifier
234 specifier = install_req.req.specifier
/dports/devel/ipython/ipython-7.29.0/
H A DREADME.rst113 install_req = ['ipython']
115 install_req.remove('ipython')
116 install_req.append('ipython<6')
120 install_requires=install_req
/dports/sysutils/py-ansible-core/ansible-core-2.11.6/test/integration/targets/ansible-galaxy-collection/tasks/
H A Dinstall.yml391 register: install_req
408 - '"Installing ''namespace8.name:1.0.0'' to" in install_req.stdout'
409 - '"Installing ''namespace9.name:1.0.0'' to" in install_req.stdout'
497 register: install_req
502 - '"Installing ''parent_dep.parent_collection:1.0.0'' to" in install_req.stdout'
503 - '"Installing ''parent_dep2.parent_collection:1.0.0'' to" in install_req.stdout'
504 - '"Installing ''child_dep.child_collection:0.5.0'' to" in install_req.stdout'
519 register: install_req
524 - '"Installing ''namespace1.name1:1.0.9'' to" in install_req.stdout'
/dports/devel/py-pip-tools4/pip-tools-4.5.1/piptools/scripts/
H A Dcompile.py281 key_from_ireq(install_req): install_req for install_req in upgrade_reqs_gen
/dports/devel/py-pipenv/pipenv-2021.5.29/pipenv/patched/piptools/scripts/
H A Dcompile.py282 key_from_ireq(install_req): install_req for install_req in upgrade_reqs_gen
/dports/www/firefox/firefox-99.0/third_party/python/pip_tools/piptools/scripts/
H A Dcompile.py340 key_from_ireq(install_req): install_req for install_req in upgrade_reqs_gen
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/python/pip_tools/piptools/scripts/
H A Dcompile.py340 key_from_ireq(install_req): install_req for install_req in upgrade_reqs_gen
/dports/www/firefox-esr/firefox-91.8.0/third_party/python/pip_tools/piptools/scripts/
H A Dcompile.py340 key_from_ireq(install_req): install_req for install_req in upgrade_reqs_gen
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/python/pip-tools/piptools/scripts/
H A Dcompile.py346 key_from_ireq(install_req): install_req for install_req in upgrade_reqs_gen

12