Skip to content

Commit 7500d17

Browse files
committed
Drop PY3.5, since 3.6-only stdlib used in augmentation
1 parent 9a03c02 commit 7500d17

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ environment:
1313
# The list here is complete (excluding Python 2.6, which
1414
# isn't covered by this document) at the time of writing.
1515

16-
- PYTHON: "C:\\Python35"
17-
- PYTHON: "C:\\Python35-x64"
16+
- PYTHON: "C:\\Python36"
17+
- PYTHON: "C:\\Python36-x64"
1818

1919
install:
2020
# We need wheel installed to build wheels

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,14 @@ def read_file(fname, encoding="utf-8"):
6262
"Intended Audience :: Science/Research",
6363
"Programming Language :: Python",
6464
"Programming Language :: Python :: 3",
65-
"Programming Language :: Python :: 3.5",
6665
"Programming Language :: Python :: 3.6",
6766
"Programming Language :: Python :: 3.7",
6867
"Natural Language :: English",
6968
"Topic :: Text Processing :: Linguistic",
7069
],
7170
keywords="textacy spacy nlp text processing linguistics",
7271
packages=find_packages(),
73-
python_requires=">=3.5",
72+
python_requires=">=3.6",
7473
install_requires=INSTALL_REQUIRES,
7574
extras_require=EXTRAS_REQUIRE,
7675
)

0 commit comments

Comments
 (0)