Skip to content

Commit

Permalink
#31 Remove support for Python 3.10
Browse files Browse the repository at this point in the history
Reason: Source code uses `StrEnum`.
  • Loading branch information
roskakori committed Nov 27, 2024
1 parent 3af1905 commit f3d4610
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.11", "3.12", "3.13"]
env:
MAIN_PYTHON_VERSION: "3.12" # same as Ubuntu 24 LTS

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
Expand Down Expand Up @@ -82,7 +81,7 @@ exclude = [
"htmlcov",
]
line-length = 120
target-version = "py310"
target-version = "py311"

[tool.ruff.lint]
ignore = [
Expand Down

0 comments on commit f3d4610

Please sign in to comment.