Skip to content

Commit 44e4467

Browse files
authored
Add support for Python 3.14 (#9790)
1 parent 9725fc5 commit 44e4467

File tree

7 files changed

+7
-5
lines changed

7 files changed

+7
-5
lines changed

.github/workflows/run-bundle-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
17+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1818
os: [ubuntu-latest, macOS-latest]
1919
steps:
2020
- uses: actions/checkout@v5

.github/workflows/run-dep-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
15+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1616
os: [ubuntu-latest, macOS-latest, windows-latest]
1717

1818
steps:

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
15+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1616
os: [ubuntu-latest, macOS-latest, windows-latest]
1717

1818
steps:

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ The aws-cli package works on Python versions:
3131
- 3.11.x and greater
3232
- 3.12.x and greater
3333
- 3.13.x and greater
34+
- 3.14.x and greater
3435

3536
Notices
3637
~~~~~~~

awscli/arguments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ def add_to_parser(self, parser):
449449
cli_name = self.cli_name
450450
parser.add_argument(
451451
cli_name,
452-
help=self.documentation,
452+
help=self.documentation.replace('%', '%%'),
453453
type=self.cli_type,
454454
required=self.required,
455455
)

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ def find_version(*file_paths):
6363
'Programming Language :: Python :: 3.11',
6464
'Programming Language :: Python :: 3.12',
6565
'Programming Language :: Python :: 3.13',
66+
'Programming Language :: Python :: 3.14',
6667
],
6768
project_urls={
6869
'Source': 'https://github.com/aws/aws-cli',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py39,py310,py311,py312,py313
2+
envlist = py39,py310,py311,py312,py313,py314
33

44
skipsdist = True
55

0 commit comments

Comments
 (0)