summaryrefslogtreecommitdiff
path: root/gnu/packages/patches/python-dateutil-pytest-compat.patch
diff options
context:
space:
mode:
authorwrobell <wrobell@riseup.net>2025-06-22 01:35:18 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-08-17 00:57:42 +0100
commit9d02452f9ff074d86cf44c1f91d61ca380574542 (patch)
tree3262478275f911ea6b9734ce00c0e7f7f642e623 /gnu/packages/patches/python-dateutil-pytest-compat.patch
parent65892b52ffb0705a8ffa8716f10b84c7de2890c7 (diff)
gnu: python-dateutil: Update to version 2.9.0.
* gnu/packages/time.scm (python-dateutil)[source](patches): Remove the dateutil patch. * gnu/packages/patches/python-dateutil-pytest-compat.patch: Drop the patch as seems not required with pytest 8 anymore. * gnu/local.mk (dist_patch_DATA): Deregester patch. Change-Id: I61ef23a2795f6cecc73bbd337759dd4e088d4807
Diffstat (limited to 'gnu/packages/patches/python-dateutil-pytest-compat.patch')
-rw-r--r--gnu/packages/patches/python-dateutil-pytest-compat.patch43
1 files changed, 0 insertions, 43 deletions
diff --git a/gnu/packages/patches/python-dateutil-pytest-compat.patch b/gnu/packages/patches/python-dateutil-pytest-compat.patch
deleted file mode 100644
index 5cff57e94c..0000000000
--- a/gnu/packages/patches/python-dateutil-pytest-compat.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-Add compatibility with newer versions of pytest.
-
-Taken from upstream:
-
- https://github.com/dateutil/dateutil/commit/2bdd63158b7f981fc6d70a869680451bdfd8d848
-
-diff --git a/dateutil/test/test_internals.py b/dateutil/test/test_internals.py
-index 53081314..b32e6723 100644
---- a/dateutil/test/test_internals.py
-+++ b/dateutil/test/test_internals.py
-@@ -9,6 +9,7 @@
-
- import sys
- import pytest
-+import warnings
-
- from dateutil.parser._parser import _ymd
- from dateutil import tz
-@@ -65,18 +66,17 @@ def test_parser_parser_private_not_warns():
- from dateutil.parser._parser import _timelex, _tzparser
- from dateutil.parser._parser import _parsetz
-
-- with pytest.warns(None) as recorder:
-+ with warnings.catch_warnings():
-+ warnings.simplefilter("error")
- _tzparser()
-- assert len(recorder) == 0
-
-- with pytest.warns(None) as recorder:
-+ with warnings.catch_warnings():
-+ warnings.simplefilter("error")
- _timelex('2014-03-03')
-
-- assert len(recorder) == 0
--
-- with pytest.warns(None) as recorder:
-+ with warnings.catch_warnings():
-+ warnings.simplefilter("error")
- _parsetz('+05:00')
-- assert len(recorder) == 0
-
-
- @pytest.mark.tzstr