14
0
forked from pool/python-twine

Accepting request 1240192 from home:ecsos:python

- Update to 6.1.0
  * Features
    - Twine now has preliminary built-in support for Trusted Publishing as an authentication mechanism. (#1194)
  * Deprecations and Removals
    - Remove support for egg and wininst distribution types.
      These are not accepted by PyPI and not produced by any modern build-backends. (#1195)
    - Twine no longer supports .tar.bz2 source distributions. (#1200)
  * Misc
    - packaging is used instead of pkginfo for parsing and validating metadata.
      This aligns metadata validation to the one performed by PyPI.
      packaging  version 24.0 or later is required. Support for metadata version 2.4
      requires packaging 24.2 or later. pkginfo is not a dependency anymore. (#1180)
    - Use "source" instead of None as pyversion for sdist uploads. This is what PyPI (and most likely other package indexes) expects. (#1191)
- Changes from 6.0.1
  * Bugfixes
    - Fixed a regression where twine check would fail to expand wildcards, e.g. twine check 'dist/*'. (#1188)
  * Misc
    #1184
- Changes from 6.0.0
  * Bugfixes
    - Restore support for pkginfo 1.11 (#1116)
  * Deprecations and Removals
    - Username for PyPI and Test PyPI now defaults to __token__ but no longer overrides a username
      configured in the environment or supplied on the command line. Workflows still supplying
      anything other than __token__ for the username when uploading to PyPI or Test PyPI will now fail.
      Either supply __token__ or do not supply a username at all. (#1121)
  * Misc
    #1024

OBS-URL: https://build.opensuse.org/request/show/1240192
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-twine?expand=0&rev=48
This commit is contained in:
2025-01-25 20:45:13 +00:00
committed by Git OBS Bridge
parent a7a3a79468
commit 3b9eafeb08
5 changed files with 49 additions and 15 deletions

View File

@@ -1,3 +1,35 @@
-------------------------------------------------------------------
Fri Jan 24 15:30:25 UTC 2025 - ecsos <ecsos@opensuse.org>
- Update to 6.1.0
* Features
- Twine now has preliminary built-in support for Trusted Publishing as an authentication mechanism. (#1194)
* Deprecations and Removals
- Remove support for egg and wininst distribution types.
These are not accepted by PyPI and not produced by any modern build-backends. (#1195)
- Twine no longer supports .tar.bz2 source distributions. (#1200)
* Misc
- packaging is used instead of pkginfo for parsing and validating metadata.
This aligns metadata validation to the one performed by PyPI.
packaging version 24.0 or later is required. Support for metadata version 2.4
requires packaging 24.2 or later. pkginfo is not a dependency anymore. (#1180)
- Use "source" instead of None as pyversion for sdist uploads. This is what PyPI (and most likely other package indexes) expects. (#1191)
- Changes from 6.0.1
* Bugfixes
- Fixed a regression where twine check would fail to expand wildcards, e.g. twine check 'dist/*'. (#1188)
* Misc
#1184
- Changes from 6.0.0
* Bugfixes
- Restore support for pkginfo 1.11 (#1116)
* Deprecations and Removals
- Username for PyPI and Test PyPI now defaults to __token__ but no longer overrides a username
configured in the environment or supplied on the command line. Workflows still supplying
anything other than __token__ for the username when uploading to PyPI or Test PyPI will now fail.
Either supply __token__ or do not supply a username at all. (#1121)
* Misc
#1024
-------------------------------------------------------------------
Thu Nov 14 03:51:14 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>