Skip to main content

Devpi-builder takes a requirements.txt and incrementally fills a devpi index with wheels of the listed python packages.

Project description

Brandon the Devpi Builder

Coverage Status Latest Version

Brandon, the devpi builder, takes a requirements.txt and incrementally fills a devpi index with wheels of the listed python packages.

Brandon by Example

Given a requirements.txt, we can upload all listed packages to the index opensource/Debian_7 on a local devpi using the following command:

$ devpi-builder requirements.txt http://localhost:3141/opensource/Debian_7

Example of such a requirements.txt:

progressbar==0.2.2
progressbar==0.2.1
PyYAML==3.11

Commandline Usage

usage: devpi-builder [-h] [--batch] [--user USER] [--password PASSWORD]
                    [--blacklist BLACKLIST] [--pure-index PURE_INDEX]
                    [--junit-xml JUNIT_XML] [--run-id RUN_ID] [--dry-run]
                    [--client-cert CLIENT_CERT]
                    requirements index

Create wheels for all given project versions and upload them to the given
index.

positional arguments:
requirements          requirements.txt style file specifying which project
                        versions to package.
index                 The index to upload the packaged software to.

optional arguments:
-h, --help            show this help message and exit
--batch               Batch mode. Do not prompt for credentials
--user USER           The user to log in as.
--password PASSWORD   Password of the user.
--blacklist BLACKLIST
                        Packages matched by this requirements.txt style file
                        will never be build.
--pure-index PURE_INDEX
                        The index to use for pure packages. Any non-pure
                        package will be uploaded to the index given as
                        positional argument. Packages already found in the
                        pure index will not be built, either.
--junit-xml JUNIT_XML
                        Write information about the build success / failure to
                        a JUnit-compatible XML file.
--run-id RUN_ID       Add the given string to all entries in the XML output,
                        allowing to distinguish output from multiple runs in a
                        merged XML.
--dry-run             Build missing wheels, but do not modify the state of
                        the devpi server.
--client-cert CLIENT_CERT
                        Client key to use to authenticate with the devpi
                        server.

The following environment variables can be used instead of command line arguments:

DEVPI_USER

The value of this environment variable will be used if --user is not given.

DEVPI_PASSWORD

The value of this environment variable will be used if --password is not given.

Features

  • Read a requirements.txt style input file.

  • Read user/pass from the environment (using DEVPI_USER and DEVPI_PASSWORD).

  • Support multiple versions of a package in the same file.

  • Only build packages not yet in the target index.

  • Support a black-list for packages to never be built and uploaded (certain packages like numpy are fragile regarding their interdependency with other packages).

  • Can use separate indices for plain python packages and those with binary contents.

  • Can log build results to a JUnit compatible XML file, thus that it can be parsed by Jenkins.

License

New BSD

Changelog

This lists the most important changes for each release.

Version 7.0.0 - 2026-02-16

Added

  • Support for Python 3.12 and 3.13.

  • Compatibility with junit-xml >= 2.0.

Fixed

  • Ensure Setuptools and wheel-filename are installed in compatible versions.

Removed

  • Python 3.6 to 3.8 are no longer supported. They likely still works but we will no longer run CI against it.

  • Compatibility with junit-xml < 1.9. Junit-xml 1.9 was released more than three years ago.

Version 6.1.0 — 2023-09-22

Added

  • Support using VCS URLs in requirements files.

Fixed

  • Building wheels for packages like zope-event that normalise the project name using dots instead of underscores is no longer broken.

Version 6.0.0 — 2023-06-09

Added

  • Python 3.10 and 3.11 are now supported.

Changed

  • Improved performance of checking for already built packages.

Removed

  • Dropped support for running tests via setup.py test. The mechanism is considered deprecated by upstream and removing it allows us to drop a dependency.

  • Python 3.6 is no longer supported. It likely still works but we will no longer run CI against it.

Version 5.1.0 — 2021-11-05

Added

  • Provide compatibility with pip 21.3 and above which drops the –build-directory option. Pip has been using a temporary directory for builds since version 1.2 so manual handling of this directory should not be necessary anymore.

Version 5.0.1 – 2020-09-09

Fixed

  • Adhere to case-insensivity when comparing package names. This will lead to blacklisting ‘cython’ vs. ‘Cython’ being the same thing.

Version 5.0.0 – 2020-04-24

Fixed

  • Remove dependency on the internal wheel API. This blocked the use of wheel versions >= 0.32.

Removed

  • Python 2 is no longer supported.

  • Python 3.5 is no longer supported.

Version 4.0.0 – 2018-11-02

Fixed

  • Correctly specify the dependency to Wheel to avoid the latest, incompatible versions.

Removed

  • Python 3.3 and Python 3.4 are no longer supported.

Version 3.0.1 — 2017-11-21

Fixed

  • Properly handle non-ASCII characters in the output of failed package builds. Previous versions used to crash in this case if a JUnit XML output file was requested.

Version 3.0.0 — 2017-06-16

Added

  • The command line parameter --batch can be used to disable any prompts.

Changed

  • The way credentials are passed has been changed in an incompatible way. The positional arguments for user and password no longer exist. Instead, use one of the following:

    • Pass the credentials via --user and --password command line arguments.

    • Pass the credentials via the environment variables DEVPI_USER and DEVPI_PASSWORD.

    • Answer the interactive prompt for user and password. This is only possible if --batch is not used.

Version 2.3.1 — 2017-05-19

Changed

  • Improved performance if a blacklist is used.

Version 2.3.0 — 2017-04-07

Added

  • The command line parameter --run-id allows to specify a run identifier that will be added to each entry in the generated JUnit XML.

Changed

Version 2.2.0 — 2016-05-23

Added

  • Capture build errors for better output in case of build failures. Thanks Travis Mehlinger.

Version 2.1.0 — 2016-04-22

Added

  • Support for client certificates. Thanks Hans Lawrenz.

Version 2.0.0 — 2016-01-20

Added

  • Compatibility with pip >= 8.0 by relying on pip’s default download cache mechanism instead of explicitly requiring a download cache. This effectively disables caching for people still using pip < 6.0. Thanks Christian Stefanescu.

  • Support for dry-running the wheel build without changing the devpi server state.

  • Python 3.5 is now officially supported.

Removed

  • Python 3.2 is no longer supported.

Version 1.0.0 — 2015-05-22

Changed

  • Use devpi-plumber instead of a custom devpi wrapper.

  • Check the blacklist first when deciding whether to build a package.

Version 0.4.0 — 2015-09-13

Changed

  • Only consider a package to exist if it is a wheel and it is compatible with the current system. Thanks Michael Still and David Szotten

Fixed

  • The source distribution now properly contains a README.md. Thanks Mikhail Lukyanchenko.

Version 0.3.0 — 2015-08-15

Added

  • Support for special-case handling of pure python wheels

  • Optional support for reporting skipped packages in a JUnit-compatible XML

  • Python 3 support

Version 0.2.1 — 2014-08-07

Fixed

  • Fixed crash if a built wheel could cannot be found (because pip<=1.5.2 skipped it).

Version 0.2.0 — 2014-08-01

Added

  • Support for package blacklisting to never build certain wheels.

Changed

  • build as many packages as possible. Do not stop if one fails.

Version 0.1.0 — 2014-08-01

Added

  • Build a list of packages and upload them to a Devpi index

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

devpi_builder-7.0.0.tar.gz (25.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

devpi_builder-7.0.0-py3-none-any.whl (11.6 kB view details)

Uploaded Python 3

File details

Details for the file devpi_builder-7.0.0.tar.gz.

File metadata

  • Download URL: devpi_builder-7.0.0.tar.gz
  • Upload date:
  • Size: 25.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for devpi_builder-7.0.0.tar.gz
Algorithm Hash digest
SHA256 14186c1b10045f23f0c2d51cd3e578e593d358bc4fe7f567f28ab3a69c1d0c30
MD5 fa6feced722dba551b22d5a4800b362c
BLAKE2b-256 11a41e0413175d931799bee0e96d498e3181df9ab1b5d27501f6b0915c2fe767

See more details on using hashes here.

File details

Details for the file devpi_builder-7.0.0-py3-none-any.whl.

File metadata

  • Download URL: devpi_builder-7.0.0-py3-none-any.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for devpi_builder-7.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 65c4ba969921cb5e4aa182c87b3bec298cfab6444f0bce038937314b96eb73bc
MD5 f8773c02a8ccd5c65c9b4b7f98d2b140
BLAKE2b-256 9548b7c3e33be3bdd7a918a2aaff837d2a2a2aecbaadc894396a44ab6c4e1a45

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page