From 4e08b6610fed7f97f8004f16aaa939b4d6662384 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 17 Aug 2020 15:47:49 -0400 Subject: [PATCH] Release 0.8 Signed-off-by: Simo Sorce --- docs/source/conf.py | 2 +- setup.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 4187441..30fe7ea 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -55,7 +55,7 @@ # The short X.Y version. version = '0.8' # The full version, including alpha/beta/rc tags. -release = '0.8.dev1' +release = '0.8' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 5dbd854..0c6a0a1 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name = 'jwcrypto', - version = '0.8.dev1', + version = '0.8', license = 'LGPLv3+', maintainer = 'JWCrypto Project Contributors', maintainer_email = 'simo@redhat.com', @@ -19,12 +19,13 @@ 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Intended Audience :: Developers', 'Topic :: Security', 'Topic :: Software Development :: Libraries :: Python Modules' ], data_files = [('share/doc/jwcrypto', ['LICENSE', 'README.md'])], install_requires = [ - 'cryptography >= 1.5', + 'cryptography >= 2.3', ], )