forked from pool/python-cytoolz
Compare commits
6 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 09bb9a1bc1 | |||
| 435e31df38 | |||
| 7888df5f05 | |||
| ba7a534312 | |||
| 2ae99c98ba | |||
| 84821b29a2 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4503dc59f4ced53a54643272c61dc305d1dbbfbd7d6bdf296948de9f34c3a282
|
||||
size 625899
|
||||
3
cytoolz-1.1.0.tar.gz
Normal file
3
cytoolz-1.1.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:13a7bf254c3c0d28b12e2290b82aed0f0977a4c2a2bf84854fcdc7796a29f3b0
|
||||
size 642510
|
||||
@@ -1,3 +1,53 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 29 10:59:45 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 1.1.0
|
||||
* Add support for Python 3.14, PyPy 3.11 (#225)
|
||||
* Drop support for Python 3.8, PyPy 3.8 (#225)
|
||||
* Add experimental (untested!) support for free-threading,
|
||||
including building wheels (#225, #228)
|
||||
* Update to match toolz 1.1.0 (#225)
|
||||
* Faster concat (#218)
|
||||
* Improve performance by avoiding global lookups (#219)
|
||||
* Modernization (#225, #226, #227)
|
||||
* Now PEP 517-compliant; use pyproject.toml and
|
||||
setuptools.build_meta build backend
|
||||
* Use setuptools-git-versioning instead of versioneer.py
|
||||
for versioning
|
||||
* Use Trusted Publishing between Github and PyPI to
|
||||
publish releases to PyPI
|
||||
* Generate artifact attestation for sdist and wheel
|
||||
* Build wheels for more platforms (172 wheels built
|
||||
for this release!)
|
||||
* Add git pre-commit checks (but this isn't documented for contributors)
|
||||
* These also get run in CI
|
||||
* Including validate-pyproject, pyupgrade, actionlint, yamllint, zizmor
|
||||
- Move tests into different directory so pytest can find them
|
||||
- Remove C source code files from site-packages directory
|
||||
- Update BuildRequires from pyproject.toml
|
||||
- Update name for dist directory in %files section
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 23 11:13:46 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 1.0.1
|
||||
* Add support for Python 3.13
|
||||
- Switch package to modern Python Stack on SLE-15
|
||||
* Use Python 3.11 on SLE-15 by default
|
||||
* Drop support for older Python versions
|
||||
- Switch build system from setuptools to pyproject.toml
|
||||
* Add python-pip and python-wheel to BuildRequires
|
||||
* Replace %python_build with %pyproject_wheel
|
||||
* Replace %python_install with %pyproject_install
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 10 15:41:06 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 1.0.0:
|
||||
* Test fixes for Python 3.13
|
||||
* Drop Python 3.7
|
||||
* Bump ``cibuildwheel`` in CI
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 30 11:54:26 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-cytoolz
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -16,19 +16,21 @@
|
||||
#
|
||||
|
||||
|
||||
%define skip_python2 1
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-cytoolz
|
||||
Version: 0.12.3
|
||||
Version: 1.1.0
|
||||
Release: 0
|
||||
Summary: High performance python functional utilities in Cython
|
||||
License: BSD-3-Clause
|
||||
URL: https://github.com/pytoolz/cytoolz
|
||||
Source: https://files.pythonhosted.org/packages/source/c/cytoolz/cytoolz-%{version}.tar.gz
|
||||
BuildRequires: %{python_module Cython}
|
||||
BuildRequires: %{python_module devel >= 3.5}
|
||||
BuildRequires: %{python_module devel >= 3.9}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module toolz}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-toolz
|
||||
@@ -44,20 +46,26 @@ dictionaries.
|
||||
|
||||
%build
|
||||
export CFLAGS="%{optflags}"
|
||||
%python_build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%python_install
|
||||
%pyproject_install
|
||||
%python_expand find %{buildroot}%{$python_sitearch}/cytoolz -name "*.c" -exec rm {} \;
|
||||
%python_expand rm -r %{buildroot}%{$python_sitearch}/cytoolz/tests
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
||||
|
||||
%check
|
||||
# Move tests around so pytest can find them
|
||||
mkdir -p testing
|
||||
cp -rf cytoolz/tests/ testing/
|
||||
pushd testing
|
||||
%pytest_arch
|
||||
popd
|
||||
|
||||
%files %{python_files}
|
||||
%doc README.rst
|
||||
%license LICENSE.txt
|
||||
%{python_sitearch}/cytoolz/
|
||||
%{python_sitearch}/cytoolz-%{version}*-info/
|
||||
%{python_sitearch}/cytoolz-*-info/
|
||||
|
||||
%changelog
|
||||
|
||||
Reference in New Issue
Block a user