Skip to content

Commit 52b337a

Browse files
committed
drop support for python 3.5 :)
1 parent 63347f0 commit 52b337a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: [3.5, 3.6, 3.7, 3.8]
18+
python-version: [3.6, 3.7, 3.8]
1919

2020
steps:
2121
- uses: actions/checkout@v2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ The default download path is `~/.cache/language_tool_python/`. The LanguageTool
153153

154154
## Prerequisites
155155

156-
- [Python 3.5+](https://www.python.org)
156+
- [Python 3.6+](https://www.python.org)
157157
- [LanguageTool](https://www.languagetool.org) (Java 8.0 or higher)
158158

159159

language_tool_python/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
# Keep track of running server PIDs in a global list. This way,
2727
# we can ensure they're killed on exit.
28-
RUNNING_SERVER_PROCESSES = []
28+
RUNNING_SERVER_PROCESSES: List[subprocess.Popen] = []
2929

3030
class LanguageTool:
3131
"""Main class used for checking text against different rules.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='language_tool_python',
10-
version='2.6.3',
10+
version='2.6.4',
1111
description='Checks grammar using LanguageTool.',
1212
long_description_content_type='text/markdown',
1313
long_description=long_description,

0 commit comments

Comments
 (0)