SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 
Changelog for python310-wheel-0.43.0-1.2.noarch.rpm :

* Sat Mar 16 2024 Dirk Müller - update to 0.43.0:
* Dropped support for Python 3.7
* Updated vendored packaging to 24.0
* Fri Dec 22 2023 Ben Greiner - Update to 0.42.0
* Allowed removing build tag with wheel tags --build \"\"
* Fixed wheel pack and wheel tags writing updated WHEEL fields after a blank line, causing other tools to ignore them
* Fixed wheel pack and wheel tags writing WHEEL with CRLF line endings or a mix of CRLF and LF
* Fixed wheel pack --build-number \"\" not removing build tag from WHEEL (above changes by Benjamin Gilbert)- Release 0.41.3
* Updated vendored packaging to 23.2
* Fixed ABI tag generation for CPython 3.13a1 on Windows (PR by Sam Gross)- Remove pip dependency for easier bootstrap
* Mon Sep 04 2023 Martin Schreiner - Update to 0.41.2: - Changes from 0.41.2:
* Fixed platform tag detection for GraalPy and 32-bit python running on an aarch64 kernel
* Fixed wheel tags to not list directories in RECORD files
* Fixed ABI tag generation for GraalPy - Changes from 0.41.1:
* Fixed naming of the data_dir directory in the presence of local version segment given via egg_info.tag_build
* Fixed version specifiers in Requires-Dist being wrapped in parentheses - Changes from 0.41.0:
* Added full support of the build tag syntax to wheel tags
* Fixed warning on Python 3.12 about onerror deprecation
* Support testing on Python 3.12 betas
* Thu May 04 2023 Matej Cepl - Update to 0.40.0: - Added a wheel tags command to modify tags on an existing wheel - Updated vendored packaging to 23.0 - wheel unpack now preserves the executable attribute of extracted files - Fixed spaces in platform names not being converted to underscores - Fixed RECORD files in generated wheels missing the regular file attribute - Fixed DeprecationWarning about the use of the deprecated pkg_resources API - Wheel now uses flit-core as a build backend
* Fri Apr 21 2023 Dirk Müller - add sle15_python_module_pythons (jsc#PED-68)
* Thu Apr 13 2023 Matej Cepl - Make calling of %{sle15modernpython} optional.
* Sat Dec 03 2022 Yogalakshmi Arunachalam - Update to version 0.38.4
* Fixed PKG-INFO conversion in bdist_wheel mangling UTF-8 header values in METADATA (PR by Anderson Bravalheri)- Update to version 0.38.3
* Fixed install failure when used with --no-binary, reported on Ubuntu 20.04, by removing setup_requires from setup.cfg
* Sat Nov 05 2022 Arun Persaud - specfile:
* require python >= 3.7- update to version 0.38.2:
* Fixed regression introduced in v0.38.1 which broke parsing of wheel file names with multiple platform tags- changes from version 0.38.1:
* Removed install dependency on setuptools
* The future-proof fix in 0.36.0 for converting PyPy\'s SOABI into a abi tag was faulty. Fixed so that future changes in the SOABI will not change the tag.- changes from version 0.38.0 (bsc#1206670, CVE-2022-40898):
* obsoletes wheel_cve_2022_40898.patch in older dists
* Dropped support for Python < 3.7
* Updated vendored \"packaging\" to 21.3
* Replaced all uses of \"distutils\" with \"setuptools\"
* The handling of \"license_files\" (including glob patterns and default values) is now delegated to \"setuptools>=57.0.0\" (#466). The package dependencies were updated to reflect this change.
* Fixed potential DoS attack via the \"WHEEL_INFO_RE\" regular expression
* Fixed \"ValueError: ZIP does not support timestamps before 1980\" when using \"SOURCE_DATE_EPOCH=0\" or when on-disk timestamps are earlier than 1980-01-01. Such timestamps are now changed to the minimum value before packaging.
* Sat Oct 29 2022 Ben Greiner - Revert to 0.37.1
* v0.38.0 has been yanked from PyPI
* Sat Oct 22 2022 Arun Persaud - specfile:
* require python >= 3.8
* update required version for setuptools- update to version 0.38.0:
* Dropped support for Python < 3.7
* Updated vendored \"packaging\" to 21.3
* Replaced all uses of \"distutils\" with \"setuptools\"
* The handling of \"license_files\" (including glob patterns and default values) is now delegated to \"setuptools>=57.0.0\" (#466). The package dependencies were updated to reflect this change.
* Fixed potential DoS attack via the \"WHEEL_INFO_RE\" regular expression
* Fixed \"ValueError: ZIP does not support timestamps before 1980\" when using \"SOURCE_DATE_EPOCH=0\" or when on-disk timestamps are earlier than 1980-01-01. Such timestamps are now changed to the minimum value before packaging.
* Mon Feb 14 2022 Dirk Müller - update to 0.37.1:
* Fixed ``wheel pack`` duplicating the ``WHEEL`` contents when the build number has changed Fixed parsing of file names containing commas in ``RECORD`` (PR by Hood Chatham)
* Added official Python 3.10 support
* Updated vendored ``packaging`` library to v20.9- Also remove the conditional definition of python_module.
* Fri Jan 28 2022 Matej Cepl - When we limit setuptools in Requires, we should certainly do it in BuildRequires as well.
* Mon Jan 24 2022 Jan Engelhardt - Codify version requirement on setuptools for building.
* Tue Oct 05 2021 Stefan Schubert - Added BuildRequires: alts
* Fri Oct 01 2021 Stefan Schubert - Use libalternatives instead of update-alternatives.
* Thu Jan 28 2021 Dirk Müller - update to 0.36.2: - Updated vendored ``packaging`` library to v20.8 - Fixed wheel sdist missing ``LICENSE.txt`` - Don\'t use default ``macos/arm64`` deployment target in calculating the platform tag for fat binaries (PR by Ronald Oussoren) - Fixed ``AssertionError`` when ``MACOSX_DEPLOYMENT_TARGET`` was set to ``11`` (PR by Grzegorz Bokota and François-Xavier Coudert) - Fixed regression introduced in 0.36.0 on Python 2.7 when a custom generator name was passed as unicode (Scikit-build) (``TypeError: \'unicode\' does not have the buffer interface``) - Added official Python 3.9 support - Updated vendored ``packaging`` library to v20.7 - Switched to always using LF as line separator when generating ``WHEEL`` files (on Windows, CRLF was being used instead) - The ABI tag is taken from the sysconfig SOABI value. On PyPy the SOABI value is ``pypy37-pp73`` which is not compliant with PEP 3149, as it should have both the API tag and the platform tag. This change future-proofs any change in PyPy\'s SOABI tag to make sure only the ABI tag is used by wheel. - Fixed regression and test for ``bdist_wheel --plat-name``. It was ignored for C extensions in v0.35, but the regression was not detected by tests. - Replaced install dependency on ``packaging`` with a vendored copy of its ``tags`` module - Fixed ``bdist_wheel`` not working on FreeBSD due to mismatching platform tag name (it was not being converted to lowercase) - Switched to the packaging_ library for computing wheel tags - Fixed a resource leak in ``WheelFile.open()`` (PR by Jon Dufresne)
 
ICM