File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 11
11
if : " !startsWith(github.event.head_commit.message, 'chore') && !startsWith(github.ref, 'refs/tags/v')"
12
12
strategy :
13
13
matrix :
14
- python-version : ["3.12 "]
14
+ python-version : ["3.11", "3.12", "3.13 "]
15
15
steps :
16
16
- uses : actions/checkout@v1
17
17
32
32
strategy :
33
33
max-parallel : 1
34
34
matrix :
35
- python-version : ["3.12 "]
35
+ python-version : ["3.11", "3.12", "3.13 "]
36
36
steps :
37
37
- name : setup extensions
38
38
uses : actions/checkout@v1
Original file line number Diff line number Diff line change 61
61
classifiers = [
62
62
'Programming Language :: Python' ,
63
63
'Programming Language :: Python :: 3' ,
64
- 'Programming Language :: Python :: 3.9' ,
65
- 'Programming Language :: Python :: 3.10' ,
66
64
'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' ,
68
68
'Intended Audience :: Developers' ,
69
69
'License :: OSI Approved :: Apache Software License' ,
70
70
'Operating System :: OS Independent' ,
Original file line number Diff line number Diff line change 1
1
[tox]
2
- envlist = py312
2
+ envlist = py311, py312, py313
3
3
4
4
[gh-actions]
5
5
python =
6
+ 3.11: py311
6
7
3.12: py312
8
+ 3.13: py313
7
9
8
10
[testenv:py312-lint]
9
- basepython = python3.12
11
+ basepython = python3.11
10
12
deps = pylint
11
13
commands = pylint --rcfile =.pylintrc ibm_scc test/unit test/integration examples
12
14
You can’t perform that action at this time.
0 commit comments