Skip to content

Commit a919b2a

Browse files
authored
Drop support for Python 3.8 & test with new pdfminer (#116)
1 parent a2c11dc commit a919b2a

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ options and invocation.
5050

5151
### Dependencies
5252

53-
* Python >= 3.8
53+
* Python >= 3.9
5454
* [pdfminer.six](https://github.com/pdfminer/pdfminer.six)
5555

5656

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
55
[project]
66
name = "pdfannots"
77
dynamic = ["version"]
8-
requires-python = ">=3.8"
8+
requires-python = ">=3.9"
99
dependencies = ["pdfminer.six >= 20220319, != 20240706"]
1010
description = "Tool to extract and pretty-print PDF annotations for reviewing"
1111
readme = "README.md"

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# general requirements for pdfannots
22
# Use as: pip3 install -r requirements.txt
33

4-
pdfminer.six == 20251107
4+
pdfminer.six == 20251107 ; python_version == "3.9"
5+
pdfminer.six == 20251230 ; python_version > "3.9"

0 commit comments

Comments
 (0)