Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ jobs:
environment: testing
strategy:
matrix:
python: [3.8, 3.9, "3.10", "3.11"]
# Python 3.8/3.9 dropped: fixed requests/urllib3 pins require Python >= 3.10 (work item 741117)
python: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ When using a self-signed certificate for SSL, the `REQUESTS_CA_BUNDLE` environme

## Create a Build Environment (optional)

The SDK requires [Python 3.8](https://www.python.org/downloads/) or higher.
The SDK requires [Python 3.10](https://www.python.org/downloads/) or higher.

First, ensure Python is in `$PATH`, then run:

Expand Down
16 changes: 11 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,20 @@ author-email = "GitHub@delinea.com"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
description-file = "README.md"
# BREAKING (consumer-facing): the requests floor was raised from 2.12.5 to 2.34.2
# to clear CVE-2026-25645 (requests) and its transitive urllib3 advisories for
# downstream installs, not just CI. requests 2.34.2 requires Python >= 3.10.
requires = [
"requests >= 2.12.5"
"requests >= 2.34.2"
]
requires-python=">=3.8"
# BREAKING (consumer-facing): minimum Python raised from 3.8 to 3.10. The fixed
# requests/urllib3 releases that clear the flagged CVEs dropped 3.8/3.9 support
# (both EOL). Consumers on Python 3.8/3.9 must stay on an older SDK release or
# upgrade their runtime. See work item 741117.
requires-python=">=3.10"
dist-name = "python-tss-sdk"
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
# Docs for tox config -> https://tox.readthedocs.io/en/latest/config.html

[tox]
envlist = 3.8, 3.9, 3.10, 3.11, 3.12
# Python 3.8/3.9 dropped: fixed requests/urllib3 pins require Python >= 3.10 (work item 741117)
envlist = 3.10, 3.11, 3.12
isolated_build = True
skipsdist = True

Expand Down
Loading