Skip to content

Commit 683a8e4

Browse files
committed
Require Python 3.10+, closes #18
1 parent e10c727 commit 683a8e4

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Install Python
1919
uses: actions/setup-python@v4
2020
with:
21-
python-version: 3.9
21+
python-version: "3.10"
2222

2323
- name: Install dependencies - Windows
2424
run: |

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,14 @@ The easiest way to install is via pip and PyPI
4444
pip install txtmarker
4545
```
4646

47-
Python 3.9+ is supported. Using a Python [virtual environment](https://docs.python.org/3/library/venv.html) is recommended.
47+
Python 3.10+ is supported. Using a Python [virtual environment](https://docs.python.org/3/library/venv.html) is recommended.
4848

4949
txtmarker can also be installed directly from GitHub to access the latest, unreleased features.
5050

5151
```
5252
pip install git+https://github.com/neuml/txtmarker
5353
```
5454

55-
Python 3.9+ is supported
56-
5755
## Examples
5856

5957
The examples directory has a series of examples and notebooks giving an overview of txtmarker. See the list of notebooks below.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
packages=find_packages(where="src/python"),
2222
package_dir={"": "src/python"},
2323
keywords="pdf highlight text search",
24-
python_requires=">=3.9",
24+
python_requires=">=3.10",
2525
install_requires=["pdfminer.six>=20201018", "pdf-annotate>=0.11.0"],
2626
classifiers=[
2727
"License :: OSI Approved :: Apache Software License",

0 commit comments

Comments
 (0)