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

Commit 463a734

Browse files
committed
Remove support for Python 3.6
1 parent 9bd8ed3 commit 463a734

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: .github/workflows/python-app.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
python-version:
21-
- '3.6'
2221
- '3.7'
2322
- '3.8'
2423
- '3.9'
24+
- '3.10'
2525

2626
steps:
2727
- uses: actions/checkout@v2

Diff for: setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ def run_tests(self):
6868
classifiers=[
6969
"Development Status :: 5 - Production/Stable",
7070
"License :: OSI Approved :: Apache Software License",
71-
"Programming Language :: Python :: 3.6",
7271
"Programming Language :: Python :: 3.7",
7372
"Programming Language :: Python :: 3.8",
7473
"Programming Language :: Python :: 3.9",
74+
"Programming Language :: Python :: 3.10",
7575
"Topic :: Software Development :: Libraries :: Python Modules"],
7676
install_requires=[
77-
'oidcmsg==1.5.4',
77+
'oidcmsg==1.6.0',
7878
'pyyaml>=5.1.2',
7979
'responses'
8080
],

0 commit comments

Comments
 (0)