Skip to content

Commit 263f92e

Browse files
authored
Merge pull request #160 from cisagov/improvement/add-python-3.14
Add support for Python 3.14
2 parents c3d124e + 49a62ee commit 263f92e

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@ jobs:
224224
- "3.11"
225225
- "3.12"
226226
- "3.13"
227+
- "3.14"
227228
steps:
228229
- name: Apply standard cisagov job preamble
229230
uses: cisagov/action-job-preamble@v1
@@ -351,6 +352,7 @@ jobs:
351352
- "3.11"
352353
- "3.12"
353354
- "3.13"
355+
- "3.14"
354356
steps:
355357
- name: Apply standard cisagov job preamble
356358
uses: cisagov/action-job-preamble@v1
@@ -436,6 +438,7 @@ jobs:
436438
- "3.11"
437439
- "3.12"
438440
- "3.13"
441+
- "3.14"
439442
steps:
440443
- name: Apply standard cisagov job preamble
441444
uses: cisagov/action-job-preamble@v1

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ def get_version(version_file):
8080
"Programming Language :: Python :: 3.11",
8181
"Programming Language :: Python :: 3.12",
8282
"Programming Language :: Python :: 3.13",
83+
"Programming Language :: Python :: 3.14",
8384
"Programming Language :: Python :: Implementation :: CPython",
8485
],
8586
python_requires=">=3.9",

src/example/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""This file defines the version of this module."""
22

3-
__version__ = "0.2.2"
3+
__version__ = "0.3.0"

0 commit comments

Comments
 (0)