Skip to content

Commit d500782

Browse files
committed
feat: drops support for Python 3.8 and adds support for Python 3.13.
Python 3.8 is no longer recieving updates. All users should migrate to Python 3.9 or later at this time.
1 parent 0e9cf02 commit d500782

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
fail-fast: false
2727
matrix:
2828
python-version:
29-
- '3.8'
3029
- '3.9'
3130
- '3.10'
3231
- '3.11'
3332
- '3.12'
33+
- '3.13'
3434
steps:
3535
- uses: actions/checkout@v4
3636
- uses: actions/setup-python@v5

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The `posit-sdk` is a software development kit (SDK) for working with Posit's pro
88

99
Before contributing to the `posit-sdk`, ensure that the following prerequisites are met:
1010

11-
- Python >=3.8
11+
- Python >=3.9
1212

1313
> [!INFO]
1414
> We require using virtual environments to maintain a clean and consistent development environment.

docs/installation.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ toc-depth: 2
88

99
## Python version
1010

11-
We recommend using the latest version of Python available to you. The Posit SDK supports Python 3.8 and newer.
11+
We recommend using the latest version of Python available to you. The Posit SDK supports Python 3.9 and newer.
1212

1313
## Dependencies
1414

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
name = "posit-sdk"
77
description = "Posit SDK for Python"
88
readme = "README.md"
9-
requires-python = ">=3.8"
9+
requires-python = ">=3.9"
1010
license = { file = "LICENSE" }
1111
keywords = ["posit", "sdk"]
1212
classifiers = [

0 commit comments

Comments
 (0)