diff --git a/numpoly-1.2.3.tar.gz b/numpoly-1.2.3.tar.gz deleted file mode 100644 index 2d73fcb6d82b7f7d08b3bdeb2da9806cf7aeef94..0000000000000000000000000000000000000000 Binary files a/numpoly-1.2.3.tar.gz and /dev/null differ diff --git a/numpoly-1.2.5.tar.gz b/numpoly-1.2.5.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..c6a070ca4cad1640aa9f025aa076669748d97a40 Binary files /dev/null and b/numpoly-1.2.5.tar.gz differ diff --git a/python-numpoly.spec b/python-numpoly.spec index 59c8a47b717d07cfa918cad631f08e20162919fd..8eb33f0ab9bdb45f7edd2d32a6f1b1252704bee4 100644 --- a/python-numpoly.spec +++ b/python-numpoly.spec @@ -1,14 +1,14 @@ %global _empty_manifest_terminate_build 0 Name: python-numpoly -Version: 1.2.3 +Version: 1.2.5 Release: 1 Summary: Polynomials as a numpy datatype License: BSD-2-Clause URL: https://github.com/jonathf/numpoly -Source0: https://files.pythonhosted.org/packages/37/10/96ccf9b0ba76b552939cd9f2be478b8b03b1160f33cde0f840e9cadf0f9e/numpoly-1.2.3.tar.gz +Source0: https://files.pythonhosted.org/packages/e0/82/bf42b5599ac9c39bbf9a86111187c87ea35fd37570874fb51c68ca7f06b8/numpoly-1.2.5.tar.gz +Source1: setup.py BuildArch: noarch -Requires: python3-numpy %description Numpoly is a generic library for creating, manipulating and evaluating @@ -16,9 +16,10 @@ arrays of polynomials based on numpy.ndarray objects. %package -n python3-numpoly Summary: Polynomials as a numpy datatype -Provides: python-numpoly +Provides: python-numpoly = %{version}-%{release} BuildRequires: python3-devel BuildRequires: python3-setuptools +Requires: python3-numpy %description -n python3-numpoly Numpoly is a generic library for creating, manipulating and evaluating arrays of polynomials based on numpy.ndarray objects. @@ -31,7 +32,8 @@ Numpoly is a generic library for creating, manipulating and evaluating arrays of polynomials based on numpy.ndarray objects. %prep -%autosetup -n numpoly-1.2.3 +%autosetup -n numpoly-%{version} +cp %{SOURCE1} ./ %build %py3_build @@ -71,6 +73,9 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog +* Tue Feb 07 2023 jiangxinyu - 1.2.5-1 +- Update package to version 1.2.5 + * Fri Dec 17 2021 Python_Bot - 1.2.3-1 - Package Init diff --git a/setup.py b/setup.py new file mode 100644 index 0000000000000000000000000000000000000000..33537a638ea8923b28d7569becda43e45ff37203 --- /dev/null +++ b/setup.py @@ -0,0 +1,9 @@ +#!/usr/bin/env python + +from setuptools import setup + +if __name__ == "__main__": + setup( + name = "numpoly", + version = "1.2.5", +)