Skip to content

Commit

Permalink
build(python): drop 3.8 and PyPy 3.9; add 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
dbohdan committed Oct 12, 2024
1 parent ac8df0f commit 60eeafe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.10"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.10"]
os: ["macos-latest", "ubuntu-latest", "windows-latest"]
steps:
- name: 'Disable `autocrlf` in Git'
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ include = [
]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.9"

cbor2 = "^5.6"
"ruamel.yaml" = "^0.18.0"
Expand Down Expand Up @@ -123,11 +123,11 @@ cmd = "pyright ${PYTHON_SOURCES}"
help = "Run Pyright"

[tool.pyright]
pythonVersion = "3.8"
pythonVersion = "3.9"

[tool.ruff]
src = ["src", "tests"]
target-version = "py38"
target-version = "py39"

[tool.ruff.lint]
select = [
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ isolated_build = true
requires =
tox>=4
env_list =
py{38,39,310,311,312},pypy{39,310}
py{39,310,311,312,313},pypy{310}

[testenv]
description = run tests
Expand Down

0 comments on commit 60eeafe

Please sign in to comment.