From 81288c78c6395b64c6e31275ffd28173958054df Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 1 Jun 2021 09:47:54 -0400 Subject: [PATCH] Release 0.9 Signed-off-by: Simo Sorce --- Makefile | 3 ++- docs/source/conf.py | 2 +- setup.py | 5 ++--- tox.ini | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 81a7e70..3184ac4 100644 --- a/Makefile +++ b/Makefile @@ -26,9 +26,10 @@ testlong: test: rm -f .coverage tox -e py27 - tox -e py35 --skip-missing-interpreter tox -e py36 --skip-missing-interpreter tox -e py37 --skip-missing-interpreter + tox -e py38 --skip-missing-interpreter + tox -e py39 --skip-missing-interpreter DOCS_DIR = docs .PHONY: docs diff --git a/docs/source/conf.py b/docs/source/conf.py index a166acb..3ef173d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -55,7 +55,7 @@ # The short X.Y version. version = '0.9' # The full version, including alpha/beta/rc tags. -release = '0.9.dev1' +release = '0.9' # 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 befaed8..920af74 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name = 'jwcrypto', - version = '0.9.dev1', + version = '0.9', license = 'LGPLv3+', maintainer = 'JWCrypto Project Contributors', maintainer_email = 'simo@redhat.com', @@ -15,11 +15,10 @@ description = 'Implementation of JOSE Web standards', classifiers = [ 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Intended Audience :: Developers', 'Topic :: Security', 'Topic :: Software Development :: Libraries :: Python Modules' diff --git a/tox.ini b/tox.ini index 1ba5270..bf921f7 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = lint,py27,py35,py36,py37,pep8py2,pep8py3,doc,sphinx +envlist = lint,py27,py36,py37,py38,py39,pep8py2,pep8py3,doc,sphinx skip_missing_interpreters = true [testenv]