Skip to content

Commit

Permalink
drop Python 3.7 support to keep up with pdfminer (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xabu authored Feb 22, 2024
1 parent 054dfa9 commit c99c896
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ options and invocation.

### Dependencies

* Python >= 3.7
* Python >= 3.8
* [pdfminer.six](https://github.com/pdfminer/pdfminer.six)


Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -42,7 +41,7 @@ def main() -> None:
'pdfannots=pdfannots.cli:main',
],
},
python_requires='>=3.7',
python_requires='>=3.8',
install_requires=['pdfminer.six >= 20220319'],
)

Expand Down

0 comments on commit c99c896

Please sign in to comment.