Skip to content

Commit

Permalink
Remove 3.8 support, add 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
s-t-e-v-e-n-k committed Nov 2, 2024
1 parent 3ca940b commit 3668cb1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Test (Python ${{ matrix.python-version }})
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "jellyash"
dynamic = ["version"]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">= 3.8"
requires-python = ">= 3.9"
dependencies = [
"jellyfin_apiclient_python",
"typing_extensions;python_version<'3.11'",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[tox]
envlist =
lint,
py{38,39,310,311,312},
py{39,310,311,312,313},

[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310, lint
3.11: py311
3.12: py312
3.13: py313

[testenv]
deps =
Expand Down

0 comments on commit 3668cb1

Please sign in to comment.