update to 1.4.4

This commit is contained in:
fu-shanqing 2022-08-03 23:01:25 +08:00
parent f9781e1178
commit 0dd5c84bb7
4 changed files with 47 additions and 1 deletions

View File

@ -0,0 +1,42 @@
--- kiwisolver-1.4.4/setup.py 2022-07-16 04:13:35.000000000 +0800
+++ kiwisolver-1.4.1/setup.py 2022-03-27 23:36:05.000000000 +0800
@@ -44,6 +44,39 @@
setup(
+ # FIXME remove once setuptool supports PEP 621
+ name="kiwisolver",
+ author="The Nucleic Development Team",
+ author_email="sccolbert@gmail.com",
+ url="https://github.com/nucleic/kiwi",
+ description="A fast implementation of the Cassowary constraint solver",
+ long_description=open("README.rst").read(),
+ license="BSD",
+ classifiers=[
+ # https://pypi.org/pypi?%3Aaction=list_classifiers
+ "License :: OSI Approved :: BSD License",
+ "Programming Language :: Python",
+ "Programming Language :: Python :: 3",
+ "Programming Language :: Python :: 3.7",
+ "Programming Language :: Python :: 3.8",
+ "Programming Language :: Python :: 3.9",
+ "Programming Language :: Python :: 3.10",
+ "Programming Language :: Python :: Implementation :: CPython",
+ "Programming Language :: Python :: Implementation :: PyPy",
+ ],
+ python_requires=">=3.7",
+ # FIXME end of remove once setuptool supports PEP 621
+ setup_requires=[
+ "setuptools>=42",
+ "wheel",
+ "setuptools_scm[toml]>=3.4.3",
+ "cppy>=1.2.0",
+ ],
+ package_dir={"": "py"},
+ packages=["kiwisolver"],
+ install_requires=["typing_extensions;python_version<'3.8'"],
ext_modules=ext_modules,
cmdclass={"build_ext": CppyBuildExt},
+ include_package_data=False,
+ package_data={"kiwisolver": ["py.typed", "*.pyi"]},
)

Binary file not shown.

BIN
kiwisolver-1.4.4.tar.gz Normal file

Binary file not shown.

View File

@ -1,10 +1,11 @@
Name: python-kiwisolver Name: python-kiwisolver
Version: 1.4.1 Version: 1.4.4
Release: 1 Release: 1
Summary: A fast implementation of the Cassowary constraint solver Summary: A fast implementation of the Cassowary constraint solver
License: BSD-3-Clause License: BSD-3-Clause
URL: https://github.com/nucleic/kiwi URL: https://github.com/nucleic/kiwi
Source0: https://github.com/nucleic/kiwi/archive/%{version}/kiwisolver-%{version}.tar.gz Source0: https://github.com/nucleic/kiwi/archive/%{version}/kiwisolver-%{version}.tar.gz
Patch0: fix-kiwisolver-version.patch
BuildRequires: gcc-c++ python3-cppy python3-pip python3-setuptools_scm python3-wheel BuildRequires: gcc-c++ python3-cppy python3-pip python3-setuptools_scm python3-wheel
%description %description
@ -40,6 +41,9 @@ PYTHONPATH="%{buildroot}%{python3_sitearch}" py.test-3 py/tests/
%{python3_sitearch}/kiwisolver-%{version}-*.egg-info %{python3_sitearch}/kiwisolver-%{version}-*.egg-info
%changelog %changelog
* Wed Aug 03 2022 fushanqing <fushanqing@kylinos.cn> - 1.4.4-1
- update to 1.4.4
* Tue Jul 05 2022 SimpleUpdate Robot <tc@openeuler.org> - 1.4.1-1 * Tue Jul 05 2022 SimpleUpdate Robot <tc@openeuler.org> - 1.4.1-1
- Upgrade to version 1.4.1 - Upgrade to version 1.4.1