diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 8b0cd4f..0f8c413 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -7,7 +7,7 @@ on: pull_request: branches: [ main ] push: - branches: + branches: - main workflow_dispatch: @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: 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@v2 diff --git a/docs/changelog.md b/docs/changelog.md index f683fa0..548a2e0 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,15 @@ # Changelog +## 0.3.2 (2023-10-17) + +**Changes** + +- Support for Python 3.12 and all future 3.0 versions of Python ([#16](https://github.com/SamEdwardes/spacypdfreader/issues/16), [#21](https://github.com/SamEdwardes/spacypdfreader/issues/21)) + +**Fixes** + +None + ## 0.3.1 (2023-10-17) **Changes** diff --git a/pyproject.toml b/pyproject.toml index cf745fb..6a493b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ repository = "https://github.com/SamEdwardes/spaCyPDFreader" keywords = ["python", "spacy", "nlp", "pdf", "pdfs"] [tool.poetry.dependencies] -python = ">=3.8,<3.12" +python = ">=3.8,<4.0" spacy = "^3.4" rich = "^10.15.2" "pdfminer.six" = "^20211012"