diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 0e7b6d2..5282abc 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 28a1a2e..775228f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,13 @@ and this project tries to adhere to [Semantic Versioning](https://semver.org/spe Historic and pre-release versions aren't necessarily included. +## UNRELEASED - TBC + +### Changed + +- Update dev/test dependencies: mypy, ruff + + ## [0.5.0] - 2023-11-09 ### Added @@ -24,6 +31,7 @@ Historic and pre-release versions aren't necessarily included. ### Changed - Update dependencies: requests, playwright + - Update dev/test dependencies: black, mypy, ruff, types-requests @@ -43,6 +51,7 @@ Historic and pre-release versions aren't necessarily included. ### Added - PEP 561 typing compatibility + - Documentation: Explain how to install playwright system dependencies ### Changed diff --git a/pyproject.toml b/pyproject.toml index 50b8e53..f0a6ff1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,10 +19,10 @@ playwright = "^1.39.0" [tool.poetry.group.dev.dependencies] black = "^23.11.0" isort = "^5.12.0" -ruff = "^0.1.5" +ruff = "^0.1.6" [tool.poetry.group.test.dependencies] -mypy = "^1.6.1" +mypy = "^1.7.0" pytest = "^7.4.2" types-requests = "^2.31.0.10" types-beautifulsoup4 = "^4.12.0.6"