Codebase list python-validictory / 8f1ff16
* Team upload. * Added patch from Steve Langasek to fix Python 3.10 compat (Closes: #1001480). Thomas Goirand 2 years ago
3 changed file(s) with 27 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
0 python-validictory (1.1.2-2) UNRELEASED; urgency=medium
0 python-validictory (1.1.2-2) unstable; urgency=medium
11
2 [ Debian Janitor ]
23 * Update watch file format version to 4.
34 * Bump debhelper from old 12 to 13.
45 * Update standards version to 4.5.1, no changes needed.
56
6 -- Debian Janitor <janitor@jelmer.uk> Wed, 15 Sep 2021 00:39:24 -0000
7 [ Thomas Goirand ]
8 * Team upload.
9 * Added patch from Steve Langasek to fix Python 3.10 compat
10 (Closes: #1001480).
11
12 -- Thomas Goirand <zigo@debian.org> Tue, 04 Jan 2022 16:42:53 +0100
713
814 python-validictory (1.1.2-1) unstable; urgency=medium
915
0 Description: Compatibility with python 3.10
1 Author: Steve Langasek <steve.langasek@ubuntu.com>
2 Last-Update: 2021-12-11
3 Forwarded: no
4
5 Index: python-validictory-1.1.2/validictory/validator.py
6 ===================================================================
7 --- python-validictory-1.1.2.orig/validictory/validator.py
8 +++ python-validictory-1.1.2/validictory/validator.py
9 @@ -4,7 +4,7 @@
10 import socket
11 from datetime import datetime
12 from decimal import Decimal
13 -from collections import Mapping, Container
14 +from collections.abc import Mapping, Container
15
16 if sys.version_info[0] == 3:
17 _str_type = str
0 python-3.10.patch