Skip to content

Commit bd9f3b2

Browse files
authored
feat(paas-service): support python 3.13/3.14 (#294)
1 parent 0803841 commit bd9f3b2

6 files changed

Lines changed: 266 additions & 203 deletions

File tree

.github/workflows/paas-service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
strategy:
3939
fail-fast: false
4040
matrix:
41-
python-version: ["3.11", "3.12"]
41+
python-version: ["3.11", "3.12", "3.13", "3.14"]
4242
os: [ubuntu-latest, macos-latest]
4343
runs-on: ${{ matrix.os }}
4444
steps:

sdks/paas-service/CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# 版本历史
22

3+
## 3.1.0
4+
5+
- 支持 Python 3.13/3.14
6+
37
## 3.0.0
48

59
- 支持 Python 3.12, 移除 Python 3.8/3.9/3.10 的支持

sdks/paas-service/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import nox
55

6-
ALL_PYTHON = ["3.11", "3.12"]
6+
ALL_PYTHON = ["3.11", "3.12", "3.13", "3.14"]
77

88

99
# ref: https://stackoverflow.com/questions/59768651/how-to-use-nox-with-poetry

sdks/paas-service/paas_service/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
# We undertake not to change the open source license (MIT license) applicable
1616
# to the current version of the project delivered to anyone in the future.
1717

18-
__version__ = "3.0.0"
18+
__version__ = "3.1.0"

0 commit comments

Comments
 (0)