Skip to content

Commit 9643b8a

Browse files
committed
DEVOPS-306: Add 3.12 and 3.13. Remove 3.7.
1 parent 1921923 commit 9643b8a

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

CI.Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
def versions = [3.7, 3.8, 3.9, 3.10, 3.11]
3+
def versions = [3.8, 3.9, 3.10, 3.11, 3.12, 3.13]
44

55
def runSonnarForPythonVersion(sourceDir, ver){
66
mySonarOpts="-Dsonar.sources=/source -Dsonar.host.url=${env.SONAR_HOST_URL} -Dsonar.login=${env.SONAR_AUTH_TOKEN}"
@@ -15,7 +15,7 @@ def runSonnarForPythonVersion(sourceDir, ver){
1515

1616
// Only run Sonar once.
1717
// Check for new versions at https://binaries.sonarsource.com/?prefix=Distribution/sonar-scanner-cli/
18-
if(ver == 3.11) {
18+
if(ver == 3.13) {
1919
sonarExec="cd /root/ && \
2020
wget -q https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-4.8.1.3023-linux.zip && \
2121
unzip -q sonar-scanner-cli-4.8.1.3023-linux.zip && \

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,12 @@ def read(*filenames, **kwargs):
4949
'Natural Language :: English',
5050
'Operating System :: OS Independent',
5151
'Programming Language :: Python',
52-
'Programming Language :: Python :: 3.7',
5352
'Programming Language :: Python :: 3.8',
5453
'Programming Language :: Python :: 3.9',
5554
'Programming Language :: Python :: 3.10',
5655
'Programming Language :: Python :: 3.11',
56+
'Programming Language :: Python :: 3.12',
57+
'Programming Language :: Python :: 3.13',
5758
'Topic :: Software Development :: Libraries :: Python Modules'
5859
]
5960
)

0 commit comments

Comments
 (0)