Update package to version 1.7.3

This commit is contained in:
wubijie 2023-03-20 16:17:03 +08:00
parent ff9f6d05c0
commit 02a9a14e9f
4 changed files with 15 additions and 2 deletions

Binary file not shown.

BIN
dict2xml-1.7.3.tar.gz Normal file

Binary file not shown.

View File

@ -1,11 +1,12 @@
%global _empty_manifest_terminate_build 0 %global _empty_manifest_terminate_build 0
Name: python-dict2xml Name: python-dict2xml
Version: 1.7.2 Version: 1.7.3
Release: 1 Release: 1
Summary: Super Simple utility to convert a python dictionary into an xml string Summary: Super Simple utility to convert a python dictionary into an xml string
License: MIT License: MIT
URL: http://github.com/delfick/python-dict2xml URL: http://github.com/delfick/python-dict2xml
Source0: https://files.pythonhosted.org/packages/48/b3/c3121b29d97b660a6b1a9557ae27e412b53f6a58a0c80fa0a12e49b20f2a/dict2xml-1.7.2.tar.gz Source0: https://files.pythonhosted.org/packages/59/19/2e36329ad47671bd3701cf5dbb94b09fdc407d9635c75131f200ee6ec7dc/dict2xml-1.7.3.tar.gz
Source1: setup.py
BuildArch: noarch BuildArch: noarch
@ -29,6 +30,7 @@ Super Simple utility to convert a python dictionary into an xml string.
%prep %prep
%autosetup -n dict2xml-%{version} %autosetup -n dict2xml-%{version}
cp %{SOURCE1} ./
%build %build
%py3_build %py3_build
@ -68,6 +70,9 @@ mv %{buildroot}/doclist.lst .
%{_docdir}/* %{_docdir}/*
%changelog %changelog
* Mon Mar 20 2023 wubijie <wubijie@kylinos.cn> - 1.7.3-1
- Update package to version 1.7.3
* Tue Nov 08 2022 wangjunqi <wangjunqi@kylinos.cn> - 1.7.2-1 * Tue Nov 08 2022 wangjunqi <wangjunqi@kylinos.cn> - 1.7.2-1
- Update package to version 1.7.2 - Update package to version 1.7.2

8
setup.py Normal file
View File

@ -0,0 +1,8 @@
#!/usr/bin/env python
from setuptools import setup
if __name__ == "__main__":
setup(
name = "dict2xml",
version = "1.7.3",
)