Skip to content

Commit c8186c8

Browse files
committed
chore(SCC): add support for Python 3.11, 3.13
Signed-off-by: Bryan Bosely <[email protected]>
1 parent 8700edd commit c8186c8

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: "!startsWith(github.event.head_commit.message, 'chore') && !startsWith(github.ref, 'refs/tags/v')"
1212
strategy:
1313
matrix:
14-
python-version: ["3.12"]
14+
python-version: ["3.11", "3.12", "3.13"]
1515
steps:
1616
- uses: actions/checkout@v1
1717

@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
max-parallel: 1
3434
matrix:
35-
python-version: ["3.12"]
35+
python-version: ["3.11", "3.12", "3.13"]
3636
steps:
3737
- name: setup extensions
3838
uses: actions/checkout@v1

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@
6161
classifiers=[
6262
'Programming Language :: Python',
6363
'Programming Language :: Python :: 3',
64-
'Programming Language :: Python :: 3.9',
65-
'Programming Language :: Python :: 3.10',
6664
'Programming Language :: Python :: 3.11',
67-
'Development Status :: 4 - Beta',
65+
'Programming Language :: Python :: 3.12',
66+
'Programming Language :: Python :: 3.13',
67+
'Development Status :: 5 - Beta',
6868
'Intended Audience :: Developers',
6969
'License :: OSI Approved :: Apache Software License',
7070
'Operating System :: OS Independent',

tox.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
[tox]
2-
envlist = py312
2+
envlist = py311, py312, py313
33

44
[gh-actions]
55
python =
6+
3.11: py311
67
3.12: py312
8+
3.13: py313
79

810
[testenv:py312-lint]
9-
basepython = python3.12
11+
basepython = python3.11
1012
deps = pylint
1113
commands = pylint --rcfile=.pylintrc ibm_scc test/unit test/integration examples
1214

0 commit comments

Comments
 (0)