Skip to content

Commit

Permalink
chore: require python 3.11 (#263)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop support for python 3.9 and 3.10

Minimum Python version is now 3.11.
  • Loading branch information
MartinHjelmare authored Aug 10, 2024
1 parent 329c73b commit c69256b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 74 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
os:
Expand Down
68 changes: 2 additions & 66 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,9 @@ version = "0.3.3"
aiovlc = "aiovlc.cli:app"

[tool.poetry.dependencies]
python = "^3.9"
python = "^3.11"
rich = ">=10"
typer = {extras = ["all"], version = "^0.12.0"}
typing-extensions = "^4.12.2"

[tool.poetry.group.dev.dependencies]
codespell = "^2.3.0"
Expand Down Expand Up @@ -100,7 +99,7 @@ exclude_lines = [

[tool.ruff]
line-length = 88
target-version = "py39"
target-version = "py311"

[tool.ruff.lint]
ignore = [
Expand Down
4 changes: 1 addition & 3 deletions src/aiovlc/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@

import asyncio
from types import TracebackType
from typing import Literal

from typing_extensions import Self
from typing import Literal, Self

from .const import LOGGER
from .exceptions import ConnectError, ConnectReadError
Expand Down

0 comments on commit c69256b

Please sign in to comment.