Skip to content

Commit

Permalink
Drop support for python 3.7 and add support for 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
thatbudakguy committed Feb 5, 2024
1 parent aa5ecfb commit d0ebaf4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: ['3.8', '3.9', '3.10']
os: [ubuntu-latest, windows-latest, macOS-latest]
include:
- os: ubuntu-latest
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,6 @@ the matching algorithm is based on Paul Vierthaler's [`chinesetextreuse`](https:

## development setup

**python >=3.7 is required**.

first, clone the repository:

```sh
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@
"License :: OSI Approved :: MIT License",
"Natural Language :: Chinese (Traditional)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Text Processing :: Linguistic",
"Topic :: Utilities",
],
keywords="old chinese, phonology, linguistics, nlp",
packages=find_packages(),
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=["docopt", "spacy>=3",
"python-levenshtein", "lingpy", "rich", "jsonlines"],
extras_require={
Expand Down

0 comments on commit d0ebaf4

Please sign in to comment.