diff --git a/dict2xml-1.7.2.tar.gz b/dict2xml-1.7.2.tar.gz deleted file mode 100644 index d7a75b1..0000000 Binary files a/dict2xml-1.7.2.tar.gz and /dev/null differ diff --git a/dict2xml-1.7.3.tar.gz b/dict2xml-1.7.3.tar.gz new file mode 100644 index 0000000..3262ef1 Binary files /dev/null and b/dict2xml-1.7.3.tar.gz differ diff --git a/python-dict2xml.spec b/python-dict2xml.spec index d083ee2..4eb9929 100644 --- a/python-dict2xml.spec +++ b/python-dict2xml.spec @@ -1,11 +1,12 @@ %global _empty_manifest_terminate_build 0 Name: python-dict2xml -Version: 1.7.2 +Version: 1.7.3 Release: 1 Summary: Super Simple utility to convert a python dictionary into an xml string License: MIT 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 @@ -29,6 +30,7 @@ Super Simple utility to convert a python dictionary into an xml string. %prep %autosetup -n dict2xml-%{version} +cp %{SOURCE1} ./ %build %py3_build @@ -68,6 +70,9 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog +* Mon Mar 20 2023 wubijie - 1.7.3-1 +- Update package to version 1.7.3 + * Tue Nov 08 2022 wangjunqi - 1.7.2-1 - Update package to version 1.7.2 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..7bba99d --- /dev/null +++ b/setup.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python +from setuptools import setup +if __name__ == "__main__": + setup( + name = "dict2xml", + version = "1.7.3", +) +