Skip to content

Commit 54e9ca0

Browse files
committed
Changes for 0.5.6.
1 parent 8825037 commit 54e9ca0

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed

README.rst

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,17 @@ Change log
7272
.. note:: GCnn refers to an issue nn on Google Code.
7373

7474

75-
0.5.6 (future)
75+
0.5.7 (future)
7676
--------------
7777

7878
Released: Not yet
7979

80-
* Fix #261: Ensure fingerprint and keygrip are added to subkey_info.
80+
0.5.6
81+
-----
82+
83+
Released: 2925-12-31
84+
85+
* Fix #261: Ensure capability, fingerprint and keygrip are added to subkey_info.
8186

8287
* Set username in the result when Verify uses a signing key that has expired or been
8388
revoked. Thanks to Steven Galgano for the patch.

gnupg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@
4949
import sys
5050
import threading
5151

52-
__version__ = '0.5.6.dev0'
52+
__version__ = '0.5.6'
5353
__author__ = 'Vinay Sajip'
54-
__date__ = '$04-Aug-2025 19:49:23$'
54+
__date__ = '$31-Dec-2025 16:41:34$'
5555

5656
STARTUPINFO = None
5757
if os.name == 'nt': # pragma: no cover

setup.cfg

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = attr: gnupg.__version__
44
description = A wrapper for the Gnu Privacy Guard (GPG or GnuPG)
55
long_description =
66
This module allows easy access to GnuPG's key management, encryption and signature
7-
functionality from Python programs. It is intended for use with Python 2.4 or
7+
functionality from Python programs. It is intended for use with Python 2.7 or
88
greater.
99
1010
Releases are normally signed using a GnuPG key with the user id
@@ -27,6 +27,7 @@ maintainer_email = vinay_sajip@yahoo.co.uk
2727
license = BSD
2828
license_files = LICENSE.txt
2929
platforms = any
30+
requires_python >= 2.7
3031
classifiers =
3132
Development Status :: 5 - Production/Stable
3233
Intended Audience :: Developers
@@ -56,4 +57,4 @@ keywords = GnuPG,cryptography,encryption,decryption,signing,verification
5657
py_modules = gnupg
5758
5859
[bdist_wheel]
59-
universal = 1
60+
python_tag = py2.py3

test_gnupg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def skipIf(condition, message):
3636
import gnupg
3737

3838
__author__ = 'Vinay Sajip'
39-
__date__ = '$04-Aug-2025 19:50:21$'
39+
__date__ = '$31-Dec-2025 16:42:39$'
4040

4141
ALL_TESTS = True
4242

tox.ini

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py{27, 38, 39, 310, 311, 312, 313, 314, py,
8-
27gpg2, 38gpg2, 39gpg2, 310gpg2, 311gpg2, 312gpg2,
9-
313gpg2,314gpg2, pygpg2}
7+
envlist = py{27, 38, 39, 310, 311, 312, 313, 314, py, 27gpg2, 38gpg2, 39gpg2, 310gpg2, 311gpg2, 312gpg2, 313gpg2, 314gpg2, pygpg2}
108
isolated_build = True
9+
requires = virtualenv<20.22.0
1110

1211
[testenv]
1312
commands = {envpython} test_gnupg.py

0 commit comments

Comments
 (0)