Skip to content

Commit c44731e

Browse files
Merge pull request #139 from code42/chore/release-2.2.1
prep version 2.2.1 and remove support for end-of-life python versions
2 parents ed222b8 + 35ca301 commit c44731e

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
16+
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
1717
steps:
1818
- uses: actions/checkout@v3
1919
- name: Setup Python ${{ matrix.python }}

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,20 @@
99
how a consumer would use the library or CLI tool (e.g. adding unit tests, updating documentation, etc) are not captured
1010
here.
1111

12-
## Unreleased
12+
## 2.2.1 - 2024-12-18
13+
14+
### Added
15+
16+
- Added support for pyton 3.13.
1317

1418
### Updated
1519

1620
- The CLI and SDK now have user-agent headers consistent with Code42 current standards.
1721

22+
### Removed
23+
24+
- Removed support for python 3.7 and 3.8, which are end-of-life.
25+
1826

1927
## 2.2.0 - 2024-11-18
2028

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
66
name = "incydr"
77
description = "Code42's Incydr Python SDK"
88
readme = "README.md"
9-
requires-python = ">=3.7"
9+
requires-python = ">=3.9"
1010
license = "MIT"
1111
keywords = []
1212
authors = [
@@ -15,12 +15,11 @@ authors = [
1515
classifiers = [
1616
"Development Status :: 4 - Beta",
1717
"Programming Language :: Python",
18-
"Programming Language :: Python :: 3.7",
19-
"Programming Language :: Python :: 3.8",
2018
"Programming Language :: Python :: 3.9",
2119
"Programming Language :: Python :: 3.10",
2220
"Programming Language :: Python :: 3.11",
2321
"Programming Language :: Python :: 3.12",
22+
"Programming Language :: Python :: 3.13",
2423
"Programming Language :: Python :: Implementation :: CPython",
2524
"Programming Language :: Python :: Implementation :: PyPy",
2625
]

src/_incydr_sdk/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# SPDX-FileCopyrightText: 2022-present Code42 Software <[email protected]>
22
#
33
# SPDX-License-Identifier: MIT
4-
__version__ = "2.2.0"
4+
__version__ = "2.2.1"

0 commit comments

Comments
 (0)