From 048761ec83a60ebb0020e5cab5e0448c2b27ef8f Mon Sep 17 00:00:00 2001 From: Andrew Baumann Date: Thu, 22 Feb 2024 17:14:08 +0100 Subject: [PATCH] drop Python 3.7 support to keep up with pdfminer --- .github/workflows/python-checks.yml | 2 +- README.md | 2 +- setup.py | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-checks.yml b/.github/workflows/python-checks.yml index 641569c..4abc9f6 100644 --- a/.github/workflows/python-checks.yml +++ b/.github/workflows/python-checks.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index 1b9db10..6c021cd 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ options and invocation. ### Dependencies - * Python >= 3.7 + * Python >= 3.8 * [pdfminer.six](https://github.com/pdfminer/pdfminer.six) diff --git a/setup.py b/setup.py index e8a5dad..72e125b 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,6 @@ def main() -> None: 'Topic :: Text Processing', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', @@ -42,7 +41,7 @@ def main() -> None: 'pdfannots=pdfannots.cli:main', ], }, - python_requires='>=3.7', + python_requires='>=3.8', install_requires=['pdfminer.six >= 20220319'], )