From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/hypothesis/, dev-python/hypothesis/files/
Date: Wed, 5 May 2021 17:05:57 +0000 (UTC) [thread overview]
Message-ID: <1620234349.31b8a4c83acc4122f3823f77464a9b077c53b65f.mgorny@gentoo> (raw)
commit: 31b8a4c83acc4122f3823f77464a9b077c53b65f
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May 5 15:41:10 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May 5 17:05:49 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31b8a4c8
dev-python/hypothesis: Enable python3.10
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.../hypothesis/files/hypothesis-6.10.1-py310.patch | 75 ++++++++++++++++++++++
dev-python/hypothesis/hypothesis-6.10.1.ebuild | 11 ++--
2 files changed, 82 insertions(+), 4 deletions(-)
diff --git a/dev-python/hypothesis/files/hypothesis-6.10.1-py310.patch b/dev-python/hypothesis/files/hypothesis-6.10.1-py310.patch
new file mode 100644
index 00000000000..f81186a46e6
--- /dev/null
+++ b/dev-python/hypothesis/files/hypothesis-6.10.1-py310.patch
@@ -0,0 +1,75 @@
+From 27ee073728e70e930118a36ffa4f8123ce363099 Mon Sep 17 00:00:00 2001
+From: Zac-HD <zac.hatfield.dodds@gmail.com>
+Date: Wed, 5 May 2021 13:01:21 +1000
+Subject: [PATCH] Test on 3.10-dev again
+
+now that pytest has been fixed
+---
+ tests/cover/test_annotations.py | 4 +---
+ tests/cover/test_lookup.py | 7 +------
+ tests/cover/test_lookup_py38.py | 2 --
+ 4 files changed, 3 insertions(+), 12 deletions(-)
+
+diff --git a/tests/cover/test_annotations.py b/tests/cover/test_annotations.py
+index 564339d39..95ebea3c5 100644
+--- a/tests/cover/test_annotations.py
++++ b/tests/cover/test_annotations.py
+@@ -13,7 +13,6 @@
+ #
+ # END HEADER
+
+-import sys
+ from inspect import getfullargspec
+
+ import attr
+@@ -116,8 +115,7 @@ def test_composite_edits_annotations():
+ @pytest.mark.parametrize("nargs", [1, 2, 3])
+ def test_given_edits_annotations(nargs):
+ spec_given = getfullargspec(given(*(nargs * [st.none()]))(pointless_composite))
+- expected = None if sys.version_info[:2] < (3, 10) else type(None)
+- assert spec_given.annotations.pop("return") == expected
++ assert spec_given.annotations.pop("return") is None
+ assert len(spec_given.annotations) == 3 - nargs
+
+
+diff --git a/tests/cover/test_lookup.py b/tests/cover/test_lookup.py
+index b74eccc62..33cb78050 100644
+--- a/tests/cover/test_lookup.py
++++ b/tests/cover/test_lookup.py
+@@ -756,12 +756,7 @@ def test_compat_get_type_hints_aware_of_None_default():
+ find_any(strategy, lambda x: x.a is not None)
+
+ assert typing.get_type_hints(constructor)["a"] == typing.Optional[str]
+- annotation = inspect.signature(constructor).parameters["a"].annotation
+- assert annotation == str or (
+- # See https://bugs.python.org/issue43006
+- annotation == typing.Optional[str]
+- and sys.version_info[:2] >= (3, 10)
+- )
++ assert inspect.signature(constructor).parameters["a"].annotation == str
+
+
+ _ValueType = typing.TypeVar("_ValueType")
+diff --git a/tests/cover/test_lookup_py38.py b/tests/cover/test_lookup_py38.py
+index 6a68254a7..db11777fe 100644
+--- a/tests/cover/test_lookup_py38.py
++++ b/tests/cover/test_lookup_py38.py
+@@ -14,7 +14,6 @@
+ # END HEADER
+
+ import dataclasses
+-import sys
+ import typing
+
+ import pytest
+@@ -103,7 +102,6 @@ class NestedDict(typing.TypedDict):
+ inner: A
+
+
+-@pytest.mark.skipif(sys.version_info[:2] >= (3, 10), reason="see issue #2897")
+ @given(from_type(NestedDict))
+ def test_typeddict_with_nested_value(value):
+ assert type(value) == dict
+--
+2.31.1
+
diff --git a/dev-python/hypothesis/hypothesis-6.10.1.ebuild b/dev-python/hypothesis/hypothesis-6.10.1.ebuild
index d2766062540..7afc12a8028 100644
--- a/dev-python/hypothesis/hypothesis-6.10.1.ebuild
+++ b/dev-python/hypothesis/hypothesis-6.10.1.ebuild
@@ -3,8 +3,7 @@
EAPI=7
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{7..9} pypy3 )
+PYTHON_COMPAT=( python3_{7..10} pypy3 )
PYTHON_REQ_USE="threads(+),sqlite"
inherit distutils-r1 multiprocessing optfeature
@@ -26,7 +25,7 @@ RDEPEND="
$(python_gen_cond_dep '
dev-python/black[${PYTHON_USEDEP}]
dev-python/click[${PYTHON_USEDEP}]
- ' 'python*')
+ ' python3_{7..9})
)
"
BDEPEND="
@@ -40,8 +39,12 @@ BDEPEND="
distutils_enable_tests --install pytest
+PATCHES=(
+ "${FILESDIR}"/${P}-py310.patch
+)
+
python_prepare() {
- if ! use cli || [[ ${EPYTHON} != python* ]]; then
+ if ! use cli || ! has "${EPYTHON}" python3_{7..9}; then
sed -i -e '/console_scripts/d' setup.py || die
fi
}
next reply other threads:[~2021-05-05 17:06 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-05 17:05 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2018-10-10 22:02 [gentoo-commits] repo/gentoo:master commit in: dev-python/hypothesis/, dev-python/hypothesis/files/ Patrice Clement
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1620234349.31b8a4c83acc4122f3823f77464a9b077c53b65f.mgorny@gentoo \
--to=mgorny@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox