diff --git a/griffe-0.40.1.tar.gz b/griffe-0.40.1.tar.gz deleted file mode 100644 index 4dbef6f8bac614d00f7f90a0f658cdd54566b7af..0000000000000000000000000000000000000000 Binary files a/griffe-0.40.1.tar.gz and /dev/null differ diff --git a/griffe-1.5.1.tar.gz b/griffe-1.5.1.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..9cf3e16d3edd7ba1366c5656a5c82a044bea81fb Binary files /dev/null and b/griffe-1.5.1.tar.gz differ diff --git a/python-griffe.spec b/python-griffe.spec index 8fd686ad5c806b3e9c22590bd1909ec51154a382..c3b1c82ac169b5e1490f66c00c15b09301f587f4 100644 --- a/python-griffe.spec +++ b/python-griffe.spec @@ -1,16 +1,15 @@ %global pypi_name griffe Name: python-%{pypi_name} -Version: 0.40.1 +Version: 1.5.1 Release: 1 Summary: Signatures for entire Python programs. Extract the structure, the frame, the skeleton of your project, to generate API documentation or find breaking changes in your API. License: ISC URL: https://mkdocstrings.github.io/griffe/ -Source0: https://files.pythonhosted.org/packages/70/27/964e5e6a405d1b6171bde91b5bf8613c64d05502ac5dc29ceaccb5661d7f/griffe-0.40.1.tar.gz +Source0: https://files.pythonhosted.org/packages/source/g/griffe/griffe-%{version}.tar.gz BuildArch: noarch BuildRequires: python3-devel -BuildRequires: python3-setuptools BuildRequires: python3-pip BuildRequires: python3-wheel BuildRequires: python3-hatchling @@ -32,7 +31,6 @@ Provides: python3-%{pypi_name}-doc %description help Signatures for entire Python programs. Extract the structure, the frame, the skeleton of your project, to generate API documentation or find breaking changes in your API. - %prep %autosetup -n %{pypi_name}-%{version} @@ -45,25 +43,22 @@ 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 if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi -if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi -pushd %{buildroot} -touch doclist.lst -if [ -d usr/share/man ]; then - find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst -fi -popd -mv %{buildroot}/doclist.lst . %files -n python3-%{pypi_name} %license LICENSE %doc README.md -%{python3_sitelib}/griffe* +%{python3_sitelib}/* %{_bindir}/griffe %files help %{_docdir}/* %changelog +* Mon Nov 04 2024 jiangxinyu - 1.5.1-1 +- Update package to version 1.5.1 + * Sort Git tags using creatordate field, which works with both lightweight and annotated tags + * Allow setting and deleting parameters within container + * Sun Feb 25 2024 wangjunqi - 0.40.1-1 - Update package to version 0.40.1 Bug Fixes: Don't return properties as parameters of dataclasses (5a5c03b by Timothée Mazzucotelli). Issue #232