Skip to content

Commit 35f0b27

Browse files
authored
Run tests against Python 3.14 and add trove classifier (#284)
* Run tests against Python 3.14 and add trove classifier * Remove unused `type: ignore` comment
1 parent e993a5d commit 35f0b27

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- "3.11"
2121
- "3.12"
2222
- "3.13"
23+
- "3.14.0-rc.3 - 3.14"
2324

2425
steps:
2526
- uses: actions/checkout@v3

awacs/aws.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
try:
1212
from typing import Literal
1313
except ImportError:
14-
from typing_extensions import Literal # type: ignore[assignment]
14+
from typing_extensions import Literal
1515

1616
# Policy effect constants.
1717
Allow = "Allow"

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ classifiers =
2121
Programming Language :: Python :: 3.11
2222
Programming Language :: Python :: 3.12
2323
Programming Language :: Python :: 3.13
24+
Programming Language :: Python :: 3.14
2425
project_urls =
2526
Changelog = https://github.com/cloudtools/awacs/blob/master/CHANGELOG.md
2627
Source = https://github.com/cloudtools/awacs

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{39,310,311,312,313}
3+
py{39,310,311,312,313,314}
44
qa,package
55

66
[testenv]

0 commit comments

Comments
 (0)