Update package to version 3.0.0

This commit is contained in:
wubijie 2023-04-04 19:03:02 +08:00
parent 2df1b3b7aa
commit 4091e1817f
4 changed files with 16 additions and 2 deletions

View File

@ -1,11 +1,12 @@
%global _empty_manifest_terminate_build 0 %global _empty_manifest_terminate_build 0
Name: python-semver Name: python-semver
Version: 2.13.0 Version: 3.0.0
Release: 1 Release: 1
Summary: Python helper for Semantic Versioning (http://semver.org/) Summary: Python helper for Semantic Versioning (http://semver.org/)
License: BSD-3-Clause License: BSD-3-Clause
URL: https://github.com/python-semver/python-semver URL: https://github.com/python-semver/python-semver
Source0: https://files.pythonhosted.org/packages/31/a9/b61190916030ee9af83de342e101f192bbb436c59be20a4cb0cdb7256ece/semver-2.13.0.tar.gz Source0: https://files.pythonhosted.org/packages/9f/93/b7389cdd7e573e70cfbeb4b0bbe101af1050a6681342f5d2bc6f1bf2d150/semver-3.0.0.tar.gz
Source1: setup.py
BuildArch: noarch BuildArch: noarch
@ -28,6 +29,7 @@ Provides: python3-semver-doc
%prep %prep
%autosetup -n semver-%{version} %autosetup -n semver-%{version}
cp %{SOURCE1} ./
%build %build
%py3_build %py3_build
@ -67,6 +69,9 @@ mv %{buildroot}/doclist.lst .
%{_docdir}/* %{_docdir}/*
%changelog %changelog
* Tue Apr 4 2023 wubijie <wubijie@kylinos.cn> - 3.0.0-1
- Update package to version 3.0.0
* Tue Oct 25 2022 liqiuyu <liqiuyu@kylinos.cn> - 2.13.0-1 * Tue Oct 25 2022 liqiuyu <liqiuyu@kylinos.cn> - 2.13.0-1
- Upgrade package to version 2.13.0 - Upgrade package to version 2.13.0

Binary file not shown.

BIN
semver-3.0.0.tar.gz Normal file

Binary file not shown.

9
setup.py Normal file
View File

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