Skip to content

Commit 2868633

Browse files
authored
build: bump Python versions (#212)
This commit changes the Python versions in the project, so that the minimum version is 3.9 and the maximum is the latest which is 3.13. Signed-off-by: Norbert Biczo <[email protected]>
1 parent ea2d733 commit 2868633

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.travis.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,15 @@ script:
1818
jobs:
1919
include:
2020
- stage: Build-Test
21-
python: '3.8'
21+
python: '3.9'
2222
- python: '3.10'
2323
- python: '3.11'
2424
- python: '3.12'
25-
25+
- python: '3.13'
26+
2627
- name: Detect-Secrets
2728
language: python
28-
python: '3.12'
29+
python: '3.13'
2930
install:
3031
- pip install --upgrade "git+https://github.com/ibm/detect-secrets.git@master#egg=detect-secrets"
3132
script:
@@ -42,7 +43,7 @@ jobs:
4243
- npm run semantic-release
4344

4445
- stage: Publish-Release
45-
python: "3.8"
46+
python: "3.9"
4647
name: Publish-To-PyPi
4748
script:
4849
- make ci

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This project contains core functionality required by Python code generated by th
99
(openapi-sdkgen).
1010

1111
# Python Version
12-
The current minimum Python version supported is 3.8.
12+
The current minimum Python version supported is 3.9.
1313

1414
## Installation
1515

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ authors = [
66
]
77
description = "Core library used by SDKs for IBM Cloud Services"
88
readme = "README.md"
9-
requires-python = ">=3.8"
9+
requires-python = ">=3.9"
1010
classifiers = [
1111
"Programming Language :: Python",
1212
"Programming Language :: Python :: 3",
13-
"Programming Language :: Python :: 3.8",
1413
"Programming Language :: Python :: 3.9",
1514
"Programming Language :: Python :: 3.10",
1615
"Programming Language :: Python :: 3.11",
1716
"Programming Language :: Python :: 3.12",
17+
"Programming Language :: Python :: 3.13",
1818
"Development Status :: 5 - Production/Stable",
1919
"Environment :: Console",
2020
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)