15
0

- Update to 0.12.1

* Support Python 3.11 (including wheels)
  * Drop Python 3.5 support
- 0.12.0
  * Update to toolz 0.12.0 (#170)
    * See toolz release notes:
      https://github.com/pytoolz/toolz/releases/tag/0.12.0
  * Build wheels automatically with cibuildwheel! (#167, #168, #169, #170)
  * Support newer Python versions (#165, don't use inspect.getargspec
    in tests)
  * Improve import times
  * Use versioneer.py to manage versions
    * __version__ and __toolz_version__ are no longer available from
      cytoolz._version--use cython.__toolz_version__ instead.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cytoolz?expand=0&rev=12
This commit is contained in:
2023-03-01 09:45:32 +00:00
committed by Git OBS Bridge
parent 800a3c2866
commit 0dbc6bfc8b
4 changed files with 24 additions and 6 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ea23663153806edddce7e4153d1d407d62357c05120a4e8485bddf1bd5ab22b4
size 481044

3
cytoolz-0.12.1.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fc33909397481c90de3cec831bfb88d97e220dc91939d996920202f184b4648e
size 503035

View File

@@ -1,3 +1,21 @@
-------------------------------------------------------------------
Wed Mar 1 09:43:53 UTC 2023 - Daniel Garcia <daniel.garcia@suse.com>
- Update to 0.12.1
* Support Python 3.11 (including wheels)
* Drop Python 3.5 support
- 0.12.0
* Update to toolz 0.12.0 (#170)
* See toolz release notes:
https://github.com/pytoolz/toolz/releases/tag/0.12.0
* Build wheels automatically with cibuildwheel! (#167, #168, #169, #170)
* Support newer Python versions (#165, don't use inspect.getargspec
in tests)
* Improve import times
* Use versioneer.py to manage versions
* __version__ and __toolz_version__ are no longer available from
cytoolz._version--use cython.__toolz_version__ instead.
-------------------------------------------------------------------
Mon Jan 10 22:38:39 UTC 2022 - Ben Greiner <code@bnavigator.de>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-cytoolz
#
# Copyright (c) 2022 SUSE LLC
# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,15 +16,15 @@
#
%{?!python_module:%define python_module() python3-%{**}}
%define skip_python2 1
Name: python-cytoolz
Version: 0.11.2
Version: 0.12.1
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 pytest}
BuildRequires: %{python_module setuptools}