The Pip actions in Continua is a wrapper around the pip.exe command line. If you're having trouble using the Pip actions, please refer to the Command Line Reference.
Pip Wheel action is used to build Wheel archives for your requirements and dependencies.
The working directory for the pip command line. Leave blank to default to the workspace folder.
The name of the Python package, the URL of the VCS project, a local project directory, or the path/URL of a local/remote package archive to build the wheel for. Leave blank or '.' to search in working folder.
Note that if installing a VCS project in editable mode it must be in the form: vcs+protocol://repo_url/#egg=pkg&subdirectory=pkg_dir. (e.g git+http://git.example.com/MyProject#egg=MyProject). For more information please refer to Pip Install VCS Support.
If this is ticked, the project is installed in editable mode.
Install packages from the given requirements files. One file path per line. [---requirement]
Visible only if the checkbox 'Install the project in editable mode' is NOT ticked.
Path to the directory where the wheel will be built. Defaults to the working folder. [---wheel]
Visible only if the checkbox 'Install the project in editable mode' is ticked.
The directory to check out editable projects into. The default when running under a virtual environment is “<venv path>\src”. The default for global installs is “<current dir>\src”. [---src]
If this is ticked and exists, the pip executable in the virtual environment scripts folder will be used instead.
The Using drop down is populated by any property collector properties whose namespace matches the pattern defined by the Pip Wheel action. The pattern for this action is ^Pip\..*
. The default property collector searches the environment path for "pip.exe".
If you create a property collector for this action, make sure you select the Path Finder PlugIn type and give it a name that will match the pattern above in blue. Example names listed here, search the table's Plugin column for "Pip".
For more in-depth explanations on property collectors see Property Collectors.
Alternatively, you can select the Custom option from the Using drop down list and specify a path in the resulting input field that will be displayed. Please read Why it's a good idea to use a property collector before using this option.
Specify any packages for which binary packages should not be used. [---no-binary]
Note that some packages are tricky to compile and may fail to install when this option is used on them.
Visible only if the option 'Custom List' is selected.
The names of the non-binary packages. One per line.
Specify any packages for which only binary packages should not be used. [---only-binary]
Note that packages without binary distributions will fail to install when this option is used on them.
Visible only if the option 'Custom List' is selected.
The names of the non-binary packages. One per line.
Constrain versions using the given constraints files. One file path per line. [---constraint]
If this is ticked, older binary packages will be used instead of newer source packages. [---prefer-binary]
Specify a proxy in the form [user:passwd@]proxy.server:port. It is recommended to use a password type variable to store the password. [---proxy]
Mark this host as trusted even if it does not have valid or any HTTPS. [---trusted-host]
The path to the alternate CA bundle. [---cert]
The path to the SSL client certificate. A single file containing the private key and the certificate in PEM format. [---client-cert]
Set the socket timeout in seconds. Leave zero to default to 15 seconds. [---timeout]
Maximum number of retries each connection should attempt. Leave zero to default to 5 times. [---retries]
Directory to unpack packages into and build in. [---build]
Select whether to use PEP 517 for building source distributions or force legacy behaviour. [---use-pep517 | --no-use-pep517]
If this is ticked, package dependencies are not installed. [---no-deps]
If this is ticked, isolation is disabled when building a modern source distribution. [---no-build-isolation]
If this is ticked, build directories are not cleaned. [---no-clean]
If this ticked, the Requires-Python information is ignored. [---ignore-requires-python]
If this is ticked, a hash is required to check against each requirement for repeatable installs. This is implied when any package in a requirements file has a --hash option. [---require-hashes]
If this is ticked, pip will also find pre-release and development versions. By default, pip only finds stable versions. [---pre]
If this is ticked, the package index is ignored. Only look at find links URLs instead.
Visible only if the checkbox 'No Index' is NOT ticked.
The base URL of Python Package Index. Default is https://pypi.org/simple. This should point to a repository compliant with PEP 503 (the simple repository API) or a local directory laid out in the same format. [---index-url]
Visible only if the checkbox 'No Index' is NOT ticked.
The extra URLs of package indexes to use in addition to --index-url. Should follow the same rules as --index-url. [---extra-index-url]
Visible only if the checkbox 'No Index' is ticked.
If a URL or path to a HTML file is specified, then it is parsed for links to archives. If a local path or file:// URL that’s a directory is specified, then the directory listing will be searched for archives. [---find-links]
Extra global options to be supplied to the setup.py call before the install command. One per line. [---global-option]
The amount of information detail to display in the build log. [--qqq | -qq | -q | -v]
The path to a verbose appending log file. [---log]
If this is ticked, the cache is disabled. [---no-cache-dir]
Visible only if the checkbox 'Disable the cache' is NOT ticked.
The path to a directory to store the cache data. [---cache-dir]
If this ticked, pip is run in an isolated mode, ignoring environment variables and user configuration. [---isolated]
Specify what to do if path already exists. [---exists-action]
{name}{'.bak' * n}
, where n is some number of .bak
extensions, such that the file didn’t exist at some point. So the most recent backup will be the one with the largest number after .bak
.How many seconds to wait for the action to finish before timing out. The default is 86400 seconds (24 hours).
Tick to continue build on failure marking the action with a warning status.
If this is ticked, any warnings logged will not mark the action with a warning status.
Multiple environment variables can be defined - one per line. These are set before the command line is run.
If this is ticked, environment variable values are written to the build log.
Tick this checkbox to set up a list of new environment variables prefixed with 'ContinuaCI.' for all current system expression objects and variables.
This checkbox is visible only if the 'Generate system environment variables' checkbox is ticked.
If this is ticked, the values of any variables marked as sensitive will be masked with **** when setting system environment variables. Clear this to expose the values.