diff --git a/frozenlist-1.4.0.tar.gz b/frozenlist-1.4.0.tar.gz deleted file mode 100644 index ae9121402e61a358b0af0ac390cfb13a32772134..0000000000000000000000000000000000000000 Binary files a/frozenlist-1.4.0.tar.gz and /dev/null differ diff --git a/frozenlist-1.5.0.tar.gz b/frozenlist-1.5.0.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..36f33f17d51dc8614247b8dd5eb018e6088a2c10 Binary files /dev/null and b/frozenlist-1.5.0.tar.gz differ diff --git a/python-frozenlist.spec b/python-frozenlist.spec index 0ceb97220d3dab3bf7aff74c3ab52eb135acfb70..c8963ff240cf9448b8bf6a567a4a55dc7d1fcdeb 100644 --- a/python-frozenlist.spec +++ b/python-frozenlist.spec @@ -1,12 +1,11 @@ %global _empty_manifest_terminate_build 0 Name: python-frozenlist -Version: 1.4.0 +Version: 1.5.0 Release: 1 Summary: A list-like structure which implements collections.abc.MutableSequence License: Apache-2.0 URL: https://github.com/aio-libs/frozenlist -Source0: https://files.pythonhosted.org/packages/8c/1f/49c96ccc87127682ba900b092863ef7c20302a2144b3185412a08480ca22/frozenlist-1.4.0.tar.gz - +Source0: https://files.pythonhosted.org/packages/8f/ed/0f4cec13a93c02c47ec32d81d11c0c1efbadf4a471e3f3ce7cad366cbbd3/frozenlist-1.5.0.tar.gz %description Frozenlist is a list-like structure which implements collections.abc.MutableSequence. @@ -21,6 +20,8 @@ BuildRequires: python3-setuptools BuildRequires: python3-cffi BuildRequires: gcc BuildRequires: gdb +BuildRequires: python3-pip python3-wheel +BuildRequires: python3-hatchling python3-hatch-vcs %description -n python3-frozenlist Frozenlist is a list-like structure which implements collections.abc.MutableSequence. The list is mutable until FrozenList.freeze is called, after which list modifications @@ -35,13 +36,13 @@ Development documents and examples for frozenlist %prep -%autosetup -n frozenlist-1.4.0 +%autosetup -n frozenlist-1.5.0 %build -%py3_build +%pyproject_build %install -%py3_install +%pyproject_install install -d -m755 %{buildroot}/%{_pkgdocdir} if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi @@ -75,6 +76,14 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog +* Thu Oct 24 2024 shaoning - 1.5.0-1 +- Update package to version 1.5.0 + * An incorrect signature of the __class_getitem__ class method has been fixed, adding a missing class_item argument under Python 3.8 and older. + * Rendered issue, PR, and commit links now lead to frozenlist's repo instead of yarl's repo. + * On the :doc:Contributing docs page, a link to the Towncrier philosophy has been fixed. + * A name of a temporary building directory now reflects that it's related to frozenlist, not yarl. + * Declared Python 3.13 supported officially in the distribution package metadata. + * Tue Aug 01 2023 sunhui - 1.4.0-1 - Update package to version 1.4.0