From 35ca3011b4caed2fdb113504bd482285e5ace1b1 Mon Sep 17 00:00:00 2001 From: Cecilia Stevens <63068179+ceciliastevens@users.noreply.github.com> Date: Wed, 18 Dec 2024 12:10:32 -0500 Subject: [PATCH] prep version 2.2.1 and remove support for end-of-life python versions --- .github/workflows/build.yml | 2 +- CHANGELOG.md | 10 +++++++++- pyproject.toml | 5 ++--- src/_incydr_sdk/__version__.py | 2 +- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 09685d90..704cba46 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] + python: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v3 - name: Setup Python ${{ matrix.python }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 82446a7c..1de03b87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,12 +9,20 @@ how a consumer would use the library or CLI tool (e.g. adding unit tests, updating documentation, etc) are not captured here. -## Unreleased +## 2.2.1 - 2024-12-18 + +### Added + +- Added support for pyton 3.13. ### Updated - The CLI and SDK now have user-agent headers consistent with Code42 current standards. +### Removed + +- Removed support for python 3.7 and 3.8, which are end-of-life. + ## 2.2.0 - 2024-11-18 diff --git a/pyproject.toml b/pyproject.toml index cd50d849..b412c83c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" name = "incydr" description = "Code42's Incydr Python SDK" readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.9" license = "MIT" keywords = [] authors = [ @@ -15,12 +15,11 @@ authors = [ classifiers = [ "Development Status :: 4 - Beta", "Programming Language :: Python", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ] diff --git a/src/_incydr_sdk/__version__.py b/src/_incydr_sdk/__version__.py index 894b5730..220e4197 100644 --- a/src/_incydr_sdk/__version__.py +++ b/src/_incydr_sdk/__version__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2022-present Code42 Software # # SPDX-License-Identifier: MIT -__version__ = "2.2.0" +__version__ = "2.2.1"