Metadata-Version: 2.4
Name: devpi-client
Version: 7.2.1
Summary: devpi upload/install/... workflow commands for Python developers
Maintainer-email: Florian Schulze <mail@pyfidelity.com>
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.
        
        
Project-URL: Bug Tracker, https://github.com/devpi/devpi/issues
Project-URL: Changelog, https://github.com/devpi/devpi/blob/main/client/CHANGELOG
Project-URL: Documentation, https://doc.devpi.net
Project-URL: Homepage, https://devpi.net
Project-URL: Source Code, https://github.com/devpi/devpi
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
License-File: LICENSE
License-File: AUTHORS
Requires-Dist: build>=0.7.0
Requires-Dist: check-manifest>=0.28
Requires-Dist: colorama; platform_system == "Windows"
Requires-Dist: devpi_common<5,>=4dev
Requires-Dist: iniconfig
Requires-Dist: pkginfo>=1.10.0
Requires-Dist: platformdirs
Requires-Dist: pluggy<2.0,>=0.6.0
Requires-Dist: requests>=2.3.0
Requires-Dist: tomli; python_version < "3.11"
Dynamic: license-file

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

The ``devpi`` command line tool is typically used in conjunction
with `devpi-server <https://pypi.org/project/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``.

.. _issue tracker at Github: https://github.com/devpi/devpi/issues/
.. _devpi-dev@python.org mailing list: https://mail.python.org/mailman3/lists/devpi-dev.python.org/
.. _GitHub Discussions: https://github.com/devpi/devpi/discussions



=========
Changelog
=========




.. towncrier release notes start

7.2.1 (2026-03-17)
==================

Bug Fixes
---------

- Work around missing support for metadata 2.4 in pkginfo with Python 3.7.

- The stored basic authentication credentials are now correctly applied to
  HTTP API URLs containing a query string.


7.2.0 (2024-10-16)
==================

Features
--------

- Support ``--no-docs`` and ``--only-docs`` for ``push`` command with devpi-server >= 6.14.0.

- Support ``--register-project`` for ``push`` command to external index with devpi-server >= 6.14.0.

- Add support for ``uv.conf`` to ``devpi use --set-cfg``.

Bug Fixes
---------

- fix #682: fixed encoding issues when decoding output of subprocesses.

- Fix #1052: require pkginfo >= 1.10.0 which supports newer metadata versions.

- Fix #1057: PermissionError during upload due to trying to copy a folder like a file.


7.1.0 (2024-07-17)
==================

Features
--------

- Support upload command configuration from ``pyproject.toml`` in ``[tool.devpi.upload]`` section.

- The ``--fallback-ini`` option of ``devpi test`` can now be relative to the package root. This allows using ``pyproject.toml`` or similar instead of ``tox.ini``.

- Add ``sdist`` and ``wheel`` options for ``setup.cfg``.

- Add detection of tox configs in pyproject.toml and setup.cfg for ``devpi test``.

Bug Fixes
---------

- In ``setup.cfg`` any value for upload settings was interpreted as True, now a warning is printed if it looks like False was meant and how to fix that. For backward compatibility the behavior wasn't changed.


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.

