Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 8c35b47

Browse files
authored
Merge pull request #56 from IdentityPython/language_support
Remove support for Python 3.6.
2 parents c76a2cc + e0dc053 commit 8c35b47

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Diff for: setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,10 @@ def run_tests(self):
6262
classifiers=[
6363
"Development Status :: 4 - Beta",
6464
"License :: OSI Approved :: Apache Software License",
65-
"Programming Language :: Python :: 3.6",
6665
"Programming Language :: Python :: 3.7",
6766
"Programming Language :: Python :: 3.8",
67+
"Programming Language :: Python :: 3.9",
68+
"Programming Language :: Python :: 3.10",
6869
"Topic :: Software Development :: Libraries :: Python Modules"],
6970
install_requires=[
7071
"cryptojwt==1.6.1",

Diff for: src/oidcmsg/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__ = "Roland Hedberg"
2-
__version__ = "1.5.4"
2+
__version__ = "1.6.0"
33

44
import os
55
from typing import Dict

Diff for: tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{36,37,38},docs,quality
2+
envlist = py{37,38,39,310},docs,quality
33

44
[testenv]
55
passenv = CI TRAVIS TRAVIS_*

0 commit comments

Comments
 (0)