Skip to content

Commit

Permalink
Drop support for Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
elliot-100 committed Feb 10, 2025
1 parent 8ffd676 commit 4be759d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-poetry-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,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"]

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ Historic and pre-release versions aren't necessarily included.

### Removed

- Remove unused dev dependency: pdoc
- Support for Python 3.8
- Unused dev dependency: pdoc


## [0.11.0] - 2024-10-23
Expand All @@ -31,6 +32,7 @@ Historic and pre-release versions aren't necessarily included.
- Docs: docstring fixes
- Update dev dependencies: mypy, pdoc, pytest, ruff


## [0.10.0] - 2024-07-15

### Changed
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ include = ["CHANGELOG.md"]
license = "GPL-3.0-only"

[tool.poetry.dependencies]
python = ">=3.8"
python = ">=3.9"
beautifulsoup4 = ">=4.12.2"
requests = ">=2.23.1"
playwright = ">=1.39.0"
Expand All @@ -33,7 +33,7 @@ module = "playwright"
disallow_untyped_calls = false

[tool.ruff]
target-version = "py38" # Ruff doesn't respect Python version in [tool.poetry.dependencies]
target-version = "py39" # Ruff doesn't respect Python version in [tool.poetry.dependencies]

[tool.ruff.lint]
select = ["ALL"]
Expand Down

0 comments on commit 4be759d

Please sign in to comment.