dev-python/tqdm: Enable py3.10

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2021-06-13 13:09:19 +02:00
parent 016cb6476f
commit 336b08c335
2 changed files with 40 additions and 1 deletions

View File

@@ -0,0 +1,35 @@
From d2a6ec2ab84aec847b1598bb2a777103cea7fc9f Mon Sep 17 00:00:00 2001
From: Casper da Costa-Luis <tqdm@cdcl.ml>
Date: Sat, 12 Jun 2021 17:39:37 +0100
Subject: [PATCH] fix py3.10 `asyncio` tests
- fixes #1176
---
tqdm/asyncio.py | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/tqdm/asyncio.py b/tqdm/asyncio.py
index 0d3ba747d..8f9b4ed6e 100644
--- a/tqdm/asyncio.py
+++ b/tqdm/asyncio.py
@@ -8,6 +8,7 @@
... ...
"""
import asyncio
+from sys import version_info
from .std import tqdm as std_tqdm
@@ -60,7 +61,11 @@ def as_completed(cls, fs, *, loop=None, timeout=None, total=None, **tqdm_kwargs)
"""
if total is None:
total = len(fs)
- yield from cls(asyncio.as_completed(fs, loop=loop, timeout=timeout),
+
+ kwargs = {}
+ if version_info[:2] < (3, 10):
+ kwargs['loop'] = loop
+ yield from cls(asyncio.as_completed(fs, timeout=timeout, **kwargs),
total=total, **tqdm_kwargs)
@classmethod

View File

@@ -3,7 +3,7 @@
EAPI=7
PYTHON_COMPAT=( pypy3 python3_{8..9} )
PYTHON_COMPAT=( pypy3 python3_{8..10} )
inherit distutils-r1
if [[ ${PV} == 9999 ]]; then
@@ -31,6 +31,10 @@ BDEPEND="
distutils_enable_tests pytest
PATCHES=(
"${FILESDIR}"/${P}-py310.patch
)
python_test() {
# Skip unpredictable performance tests
epytest --ignore 'tests/tests_perf.py'