Skip to content

Commit

Permalink
fix(poetry): sunset Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
KSmanis committed Oct 19, 2024
1 parent e27fc59 commit 56fbb5a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down
10 changes: 3 additions & 7 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ version = "0.7.14"
click = "^8.1.7"
dockerfile = "^3.3.1"
pygit2 = "^1.13.2"
python = "^3.8"
python = "^3.9"
python-on-whales = "^0.65.0"

[tool.poetry.group.lint.dependencies]
Expand All @@ -79,7 +79,7 @@ testpaths = ["tests"]

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

[tool.ruff.lint]
extend-select = [
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ sonar.sources=src
sonar.tests=tests

sonar.python.coverage.reportPaths=coverage.xml
sonar.python.version=3.8,3.9,3.10,3.11,3.12,3.13
sonar.python.version=3.9,3.10,3.11,3.12,3.13
2 changes: 1 addition & 1 deletion src/pipautocompile/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from typing import TYPE_CHECKING

if TYPE_CHECKING:
from typing import Iterator
from collections.abc import Iterator

from _typeshed import StrPath

Expand Down

0 comments on commit 56fbb5a

Please sign in to comment.