diff --git a/aioitertools-0.7.0.tar.gz b/aioitertools-0.7.0.tar.gz deleted file mode 100644 index 62aadcc..0000000 --- a/aioitertools-0.7.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:341cb05a0903177ef1b73d4cc12c92aee18e81c364e0138f4efc7ec3c47b8177 -size 27444 diff --git a/aioitertools-0.7.1.tar.gz b/aioitertools-0.7.1.tar.gz new file mode 100644 index 0000000..0613882 --- /dev/null +++ b/aioitertools-0.7.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54a56c7cf3b5290d1cb5e8974353c9f52c677612b5d69a859369a020c53414a3 +size 27838 diff --git a/python-aioitertools.changes b/python-aioitertools.changes index 2d4ea05..c18611c 100644 --- a/python-aioitertools.changes +++ b/python-aioitertools.changes @@ -1,6 +1,8 @@ ------------------------------------------------------------------- Thu May 13 17:58:59 UTC 2021 - Matej Cepl +- Update to 0.7.1: + - Fix groupby() not working with empty iterables (#39) - Add stdlib-typing_extensions.patch making typing_extensions package just an optional requirement (gh#omnilib/aioitertools#49). diff --git a/python-aioitertools.spec b/python-aioitertools.spec index 494b30e..3fadebb 100644 --- a/python-aioitertools.spec +++ b/python-aioitertools.spec @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define skip_python2 1 Name: python-aioitertools -Version: 0.7.0 +Version: 0.7.1 Release: 0 Summary: itertools and builtins for AsyncIO and mixed iterables License: MIT diff --git a/stdlib-typing_extensions.patch b/stdlib-typing_extensions.patch index 31a1fd6..19fd5ab 100644 --- a/stdlib-typing_extensions.patch +++ b/stdlib-typing_extensions.patch @@ -4,13 +4,11 @@ Date: Mon, 4 Jan 2021 19:26:31 -0600 Subject: [PATCH] Improve dependencies for Python 3.8+ --- - aioitertools/helpers.py | 8 ++++++-- - pyproject.toml | 2 +- - requirements.txt | 2 +- + aioitertools/helpers.py | 8 ++++++-- + pyproject.toml | 2 +- + requirements.txt | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) -diff --git a/aioitertools/helpers.py b/aioitertools/helpers.py -index 44a3f26..2133233 100644 --- a/aioitertools/helpers.py +++ b/aioitertools/helpers.py @@ -2,12 +2,16 @@ @@ -32,8 +30,6 @@ index 44a3f26..2133233 100644 class Orderable(Protocol): # pragma: no cover def __lt__(self, other): -diff --git a/pyproject.toml b/pyproject.toml -index 0a29286..d01886d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ author = "John Reese" @@ -45,8 +41,6 @@ index 0a29286..d01886d 100644 requires-python = ">=3.6" classifiers = [ "Development Status :: 4 - Beta", -diff --git a/requirements.txt b/requirements.txt -index 4ab797e..264c3c0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@