internal/tools/: devpi-client-7.0.3 metadata and description

Simple index

devpi upload/install/... workflow commands for Python developers

classifiers
  • Development Status :: 5 - Production/Stable
  • Environment :: Web Environment
  • Intended Audience :: Developers
  • Intended Audience :: System Administrators
  • License :: OSI Approved :: MIT License
  • Programming Language :: Python :: Implementation :: PyPy
  • Programming Language :: Python :: 3.7
  • Programming Language :: Python :: 3.8
  • Programming Language :: Python :: 3.9
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: 3.12
description_content_type text/x-rst
license Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
maintainer_email Florian Schulze <mail@pyfidelity.com>
project_urls
  • Bug Tracker, https://github.com/devpi/devpi/issues
  • Changelog, https://github.com/devpi/devpi/blob/main/client/CHANGELOG
  • Documentation, https://doc.devpi.net
  • Homepage, https://devpi.net
  • Source Code, https://github.com/devpi/devpi
requires_dist
  • build>=0.7.0
  • check-manifest>=0.28
  • colorama; platform_system == "Windows"
  • devpi_common<5,>=4dev
  • iniconfig
  • pkginfo>=1.4.2
  • platformdirs
  • pluggy<2.0,>=0.6.0
requires_python >=3.7
File Tox results History
devpi_client-7.0.3-py3-none-any.whl
Size
43 KB
Type
Python Wheel
Python
3
devpi_client-7.0.3.tar.gz
Size
2 MB
Type
Source

devpi-client: manage devpi-server, Python packaging and testing

The devpi command line tool is typically used in conjunction with devpi-server. It allows to upload, test and install packages from devpi indexes.

See https://doc.devpi.net for quickstart and more documentation.

Support

If you find a bug, use the issue tracker at Github.

For general questions use GitHub Discussions or the devpi-dev@python.org mailing list.

For support contracts and paid help contact mail at pyfidelity.com.

Changelog

7.0.3 (2024-04-20)

Bug Fixes

  • Require build>=0.7.0 to prevent import error with older versions.

  • Fix check for extracted path when testing packages related to PEP 625 changes in setuptools.

  • If the server returns a message on toxresult upload, then print it as a warning.

  • Provide proper error message if the API request for devpi use fails.

  • Fix #1011: change HTTP status codes >=400 to use self.fatal instead of raw SystemExit, protect 403 and 404 errors from SystemExit

7.0.2 (2023-10-19)

Bug Fixes

  • Fix #992: Fix error added in 6.0.4 when old authentication data from before 6.x exists.

7.0.1 (2023-10-15)

Bug Fixes

  • Fix #1005: use shutil.move instead of Path.rename to move distribution after building to prevent cross-device link errors.

  • Fix #1008: pass --no-isolation option to build when determining name/version for documentation.

7.0.0 (2023-10-11)

Deprecations and Removals

  • Use build instead of deprecated pep517 package.

  • Removed dependency on py package. Plugins which expect py.path.local need to be adjusted to work with pathlib.Path.

  • Dropped support for Python <= 3.6.

Other Changes

  • Fix #946: output name==version instead of name-version for devpi list -v.

6.0.6 (2023-10-11)

Bug Fixes

  • Fix #997: Directly use BDist, SDist and Wheel from pkginfo based on file extension instead of get_metadata, as the latter does auto-detection on content which fails in some cases.

  • Fix #1002: cleanup build directory before running Sphinx to prevent build artifacts from being added to documentation zip.