dev-python/attrs: add 23.2.0, drop 23.1.0

Closes: #3531
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-09-22 09:38:19 +02:00
parent 01084428de
commit 6e93dea9aa
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 151 additions and 7 deletions

View File

@ -1,3 +1,5 @@
DIST attrs-23.1.0.tar.gz 212878 BLAKE2B e562c22e7afdf50a9cf8deafc221d0438b8f3fb6b379c6eeb7f9e5ef182b69d5aa9bb886f4b7f69818ba2f1e9bf2ffa2831571a61c3521ab1c56f9c199b411a2 SHA512 1fff41da90668601b29412f71b4419dd9ffb9f2a8e54ce2199198557729167d6d7574954dc998818caba0d6bc378ab2ce068541df9c1c0d4ab1b071758d4a38a
EBUILD attrs-23.1.0.ebuild 786 BLAKE2B 6c06fa9e13388570cf497baca933b53204ec881637055922005951cca046ee44d1b2271ac3b68e0add026ba5ca7a86f0eab51b48a138ad997126737380f77aa0 SHA512 712faabfd601ac6fb4a7a73c543bffab5f9169b52be5e80674d915024208b34c573566bce47c0c44690ee48e5c64adde464d738d816833e041ac9e1abe99d5b6
AUX attrs-23.2.0-py313.patch 2882 BLAKE2B 81a30df9d7a438570256967df413347dafa3bee4611eef2d1e5d37c4d2a9c100b8464440ffe1dfe0d204f0e201e427201b6011da89283d63acfb554a2b309443 SHA512 e7da6587b59c9e213bf3f58324694780db4e583c129f42b6b4b2b475b4020ba5620aec96da2928ddb8054c225f49e0b1f46f996af2a6e0d78b4a47e4669945b2
AUX attrs-23.2.0-pytest-8.patch 1459 BLAKE2B 3388ed0e6022b1df0634031155c93abec6cf67a46a912c6a8415356337deeae1264566b65858e88b901d1cca55a7fa4a38c6ad7ad099596396d8936337fd2c62 SHA512 10bbd4a8863fcda3be30e99137283d5112189900403018f5780511d0995bf120132bd248fdc42436912be28b09a69bda9974c97b3859c281167442cc38f32705
DIST attrs-23.2.0.tar.gz 780820 BLAKE2B a06f4f17a81fc173c37661bcf518367a1cdc9a333d2783bd2cd1ac5f0a72bd20ec1afdd964e10255624bcfa027e3a152375cd21472c177428d29bd06b29984a1 SHA512 d8b178072a028b95d8424cd3ce0c8b4e6da8558fbcbcaaef91fbd03cf51e6190aa248aa0bff853e6f7c9595bbd5a8eef9d6f68ae2830cc1cc6d826ab0dda2378
EBUILD attrs-23.2.0.ebuild 928 BLAKE2B a5228ff6062b2e258e13b8c0fdbfe7d716e946252dd1aeea8638bee240374373da11a8040f008178993293085b0e24721971a6196416990f03cdabfc8edc642b SHA512 c3ce1d47b0240a1f06926195f4791837e7d06e3faafc9f22b63a71e57939f93230444d4301d0c0e5e5bf033b8fa5af09a97cf1e77a7ae3c81e52644f3fec0d08
MISC metadata.xml 501 BLAKE2B 0c8c3d121da5f73089f336b14f4ca62254238bdc9b66d17593d0ff63333f9df233439525f5c7dcb19d5814134887d7e2b81709ab8d2300f55252cd7ebc75dea5 SHA512 c1e730e838b686eaa80878cea470ddc710349619ccf2f47107124508e79a86f6871ab11b51180f5f990fcbf90e0f0b3f93522f28d306be2cadf17db4e08c5d74

View File

@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=hatchling
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..13} )
inherit distutils-r1 pypi
@ -20,16 +20,21 @@ SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
BDEPEND="
dev-python/hatch-fancy-pypi-readme[${PYTHON_USEDEP}]
>=dev-python/hatch-fancy-pypi-readme-23.2.0[${PYTHON_USEDEP}]
dev-python/hatch-vcs[${PYTHON_USEDEP}]
test? (
$(python_gen_impl_dep sqlite)
$(python_gen_cond_dep '
dev-python/cloudpickle[${PYTHON_USEDEP}]
' python3_{10..11})
dev-python/cloudpickle[${PYTHON_USEDEP}]
dev-python/hypothesis[${PYTHON_USEDEP}]
dev-python/zope-interface[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
PATCHES=(
# https://github.com/python-attrs/attrs/pull/1249
"${FILESDIR}/${P}-pytest-8.patch"
# https://github.com/python-attrs/attrs/pull/1255
"${FILESDIR}/${P}-py313.patch"
)

View File

@ -0,0 +1,93 @@
From f9ff9135b472c78a7333d6272c62b92217897464 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lum=C3=ADr=20=27Frenzy=27=20Balhar?=
<frenzy.madness@gmail.com>
Date: Thu, 7 Mar 2024 10:23:46 +0100
Subject: [PATCH] Fix test_ne in test_cmp.py for Python 3.13 (#1255)
* Fix test_ne in test_cmp.py for Python 3.13
Compiler in Python 3.13+ strips indents from docstrings
so they need to be compared without it for new Pythons.
Fixes: https://github.com/python-attrs/attrs/issues/1228
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
---
src/attr/_compat.py | 1 +
tests/test_cmp.py | 11 +++++++----
2 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/src/attr/_compat.py b/src/attr/_compat.py
index 46b05ca..9010047 100644
--- a/src/attr/_compat.py
+++ b/src/attr/_compat.py
@@ -14,6 +14,7 @@ PY_3_8_PLUS = sys.version_info[:2] >= (3, 8)
PY_3_9_PLUS = sys.version_info[:2] >= (3, 9)
PY310 = sys.version_info[:2] >= (3, 10)
PY_3_12_PLUS = sys.version_info[:2] >= (3, 12)
+PY_3_13_PLUS = sys.version_info[:2] >= (3, 13)
if sys.version_info < (3, 8):
diff --git a/tests/test_cmp.py b/tests/test_cmp.py
index 07bfc52..b84b66f 100644
--- a/tests/test_cmp.py
+++ b/tests/test_cmp.py
@@ -4,10 +4,10 @@
Tests for methods from `attrib._cmp`.
"""
-
import pytest
from attr._cmp import cmp_using
+from attr._compat import PY_3_13_PLUS
# Test parameters.
@@ -54,6 +54,9 @@ order_ids = [c[0].__name__ for c in order_data]
cmp_data = eq_data + order_data
cmp_ids = eq_ids + order_ids
+# Compiler strips indents from docstrings in Python 3.13+
+indent = "" if PY_3_13_PLUS else " " * 8
+
class TestEqOrder:
"""
@@ -325,7 +328,7 @@ class TestDundersUnnamedClass:
method = self.cls.__ne__
assert method.__doc__.strip() == (
"Check equality and either forward a NotImplemented or\n"
- " return the result negated."
+ f"{indent}return the result negated."
)
assert method.__name__ == "__ne__"
@@ -393,7 +396,7 @@ class TestDundersPartialOrdering:
method = self.cls.__ne__
assert method.__doc__.strip() == (
"Check equality and either forward a NotImplemented or\n"
- " return the result negated."
+ f"{indent}return the result negated."
)
assert method.__name__ == "__ne__"
@@ -465,7 +468,7 @@ class TestDundersFullOrdering:
method = self.cls.__ne__
assert method.__doc__.strip() == (
"Check equality and either forward a NotImplemented or\n"
- " return the result negated."
+ f"{indent}return the result negated."
)
assert method.__name__ == "__ne__"
--
2.45.0

View File

@ -0,0 +1,44 @@
From b9084fab02c009a593b604562a69f36a5915c8e5 Mon Sep 17 00:00:00 2001
From: Denis Laxalde <denis@laxalde.org>
Date: Sat, 2 Mar 2024 07:40:36 +0100
Subject: [PATCH] Remove pytest.deprecated_call() in TestAssoc::test_unknown
(#1249)
assoc() no longer raises a deprecation warning since commit
22ae8473fb88d6e585b05c709e81e1a46398a649 but the 'with
pytest.deprecated_call():' in that test was not removed then (in
contrast with other test cases).
Maybe this got unnoticed due to a pytest bug?
In any case, using pytest 8+ (and keeping deprecated_call()) shows that
no warning is raised and the test fails.
Removing the upper bound on pytest in dev dependencies as tests now
pass with pytest 8.0.
Fix #1233.
Co-authored-by: Hynek Schlawack <hs@ox.cx>
---
pyproject.toml | 3 +--
tests/test_funcs.py | 4 +---
2 files changed, 2 insertions(+), 5 deletions(-)
diff --git a/tests/test_funcs.py b/tests/test_funcs.py
index 044aaab..398ba35 100644
--- a/tests/test_funcs.py
+++ b/tests/test_funcs.py
@@ -600,9 +600,7 @@ class TestAssoc:
AttrsAttributeNotFoundError.
"""
# No generated class will have a four letter attribute.
- with pytest.raises(
- AttrsAttributeNotFoundError
- ) as e, pytest.deprecated_call():
+ with pytest.raises(AttrsAttributeNotFoundError) as e:
assoc(C(), aaaa=2)
assert (f"aaaa is not an attrs attribute on {C!r}.",) == e.value.args
--
2.44.0