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'], )