Skip to content

Commit e32c857

Browse files
authored
Merge pull request #112 from rosette-api/devops-306-add-python-3.12-and-3.13
DEVOPS-306: Add 3.12. Remove 3.7.
2 parents 1921923 + 84b6cf1 commit e32c857

2 files changed

Lines changed: 3 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]
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.12) {
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ 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',
5757
'Topic :: Software Development :: Libraries :: Python Modules'
5858
]
5959
)

0 commit comments

Comments
 (0)