Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 567cfd6

Browse files
crazyscientistcrobinso
authored andcommitted
ci: Test against all supported Python versions
1 parent 379bf17 commit 567cfd6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
runs-on: ubuntu-20.04
3434
strategy:
3535
matrix:
36-
# python 3.6 is for rhel/centos8 compat
37-
python-version: ["3.6", "3.x"]
36+
# python 3.6 is for rhel/centos8/sles15 compat
37+
python-version: ["3.6", "3.9", "3.10", "3.11", "3.12", "3.13.0-rc.2"]
3838

3939
steps:
4040
- uses: actions/checkout@v4

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,12 +130,12 @@ def _parse_requirements(fname):
130130
'Operating System :: OS Independent',
131131
'Programming Language :: Python',
132132
'Programming Language :: Python :: 3',
133-
'Programming Language :: Python :: 3.4',
134-
'Programming Language :: Python :: 3.5',
135133
'Programming Language :: Python :: 3.6',
136-
'Programming Language :: Python :: 3.7',
137-
'Programming Language :: Python :: 3.8',
138134
'Programming Language :: Python :: 3.9',
135+
'Programming Language :: Python :: 3.10',
136+
'Programming Language :: Python :: 3.11',
137+
'Programming Language :: Python :: 3.12',
138+
'Programming Language :: Python :: 3.13',
139139
],
140140
packages=['bugzilla'],
141141
data_files=[('share/man/man1', ['man/bugzilla.1'])],

0 commit comments

Comments
 (0)