Skip to content

Commit 0dd0e82

Browse files
committed
Stop supporting Python 3.8, add Python 3.13
1 parent fa17961 commit 0dd0e82

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.9", "3.10", "3.11", "3.12"]
11+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1212

1313
steps:
1414
- uses: actions/checkout@v4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Installation
66

7-
Requires `Python>=3.8`
7+
Requires `Python>=3.9`
88

99
```bash
1010
pip install filesender-client

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "filesender-client"
77
description = "FileSender Python CLI and API client"
88
version = "2.1.1"
99
readme = "README.md"
10-
requires-python = ">=3.8"
10+
requires-python = ">=3.9"
1111
license = {text = "BSD-3-Clause"}
1212
classifiers = [
1313
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)