Skip to content

Commit 81288c7

Browse files
committed
Release 0.9
Signed-off-by: Simo Sorce <[email protected]>
1 parent 058f510 commit 81288c7

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ testlong:
2626
test:
2727
rm -f .coverage
2828
tox -e py27
29-
tox -e py35 --skip-missing-interpreter
3029
tox -e py36 --skip-missing-interpreter
3130
tox -e py37 --skip-missing-interpreter
31+
tox -e py38 --skip-missing-interpreter
32+
tox -e py39 --skip-missing-interpreter
3233

3334
DOCS_DIR = docs
3435
.PHONY: docs

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
# The short X.Y version.
5656
version = '0.9'
5757
# The full version, including alpha/beta/rc tags.
58-
release = '0.9.dev1'
58+
release = '0.9'
5959

6060
# The language for content autogenerated by Sphinx. Refer to documentation
6161
# for a list of supported languages.

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name = 'jwcrypto',
9-
version = '0.9.dev1',
9+
version = '0.9',
1010
license = 'LGPLv3+',
1111
maintainer = 'JWCrypto Project Contributors',
1212
maintainer_email = '[email protected]',
@@ -15,11 +15,10 @@
1515
description = 'Implementation of JOSE Web standards',
1616
classifiers = [
1717
'Programming Language :: Python :: 2.7',
18-
'Programming Language :: Python :: 3.4',
19-
'Programming Language :: Python :: 3.5',
2018
'Programming Language :: Python :: 3.6',
2119
'Programming Language :: Python :: 3.7',
2220
'Programming Language :: Python :: 3.8',
21+
'Programming Language :: Python :: 3.9',
2322
'Intended Audience :: Developers',
2423
'Topic :: Security',
2524
'Topic :: Software Development :: Libraries :: Python Modules'

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = lint,py27,py35,py36,py37,pep8py2,pep8py3,doc,sphinx
2+
envlist = lint,py27,py36,py37,py38,py39,pep8py2,pep8py3,doc,sphinx
33
skip_missing_interpreters = true
44

55
[testenv]

0 commit comments

Comments
 (0)