Skip to content

Commit 376dead

Browse files
Added unit tests for py3.11 to github actions
1 parent 466b5ef commit 376dead

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: [3.7,3.8,3.9,'3.10']
13+
python-version: [3.7,3.8,3.9,'3.10',3.11]
1414

1515
steps:
1616
- uses: actions/checkout@v2

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
'sl = SoftLayer.CLI.deprecated:main',
3333
],
3434
},
35-
python_requires='>=3.6',
35+
python_requires='>=3.7',
3636
install_requires=[
3737
'prettytable >= 2.5.0',
3838
'click >= 8.0.4',
@@ -52,10 +52,11 @@
5252
'Operating System :: OS Independent',
5353
'Topic :: Software Development :: Libraries :: Python Modules',
5454
'Programming Language :: Python :: 3',
55-
'Programming Language :: Python :: 3.6',
5655
'Programming Language :: Python :: 3.7',
5756
'Programming Language :: Python :: 3.8',
5857
'Programming Language :: Python :: 3.9',
58+
'Programming Language :: Python :: 3.10',
59+
'Programming Language :: Python :: 3.11',
5960
'Programming Language :: Python :: Implementation :: CPython',
6061
'Programming Language :: Python :: Implementation :: PyPy',
6162
],

0 commit comments

Comments
 (0)