Skip to content

Commit 3668cb1

Browse files
committed
Remove 3.8 support, add 3.13
1 parent 3ca940b commit 3668cb1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Test (Python ${{ matrix.python-version }})
1010
strategy:
1111
matrix:
12-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
12+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1313
steps:
1414
- uses: actions/checkout@v3
1515
- name: Set up Python

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "jellyash"
77
dynamic = ["version"]
88
license = {file = "LICENSE"}
99
readme = "README.md"
10-
requires-python = ">= 3.8"
10+
requires-python = ">= 3.9"
1111
dependencies = [
1212
"jellyfin_apiclient_python",
1313
"typing_extensions;python_version<'3.11'",

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[tox]
22
envlist =
33
lint,
4-
py{38,39,310,311,312},
4+
py{39,310,311,312,313},
55

66
[gh-actions]
77
python =
8-
3.8: py38
98
3.9: py39
109
3.10: py310, lint
1110
3.11: py311
1211
3.12: py312
12+
3.13: py313
1313

1414
[testenv]
1515
deps =

0 commit comments

Comments
 (0)