Skip to content

Commit d663992

Browse files
committed
Drop support for python 3.5
1 parent ff2b48c commit d663992

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

.github/workflows/unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
os: [ubuntu-latest, macos-latest, windows-latest]
10-
python-version: [3.5, 3.6, 3.7]
10+
python-version: [3.6, 3.7, 3.8, 3.9]
1111
steps:
1212
- uses: actions/checkout@master
1313
- name: Setup Python

.github/workflows/unittests_codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest, macos-latest, windows-latest]
20-
python-version: [3.5, 3.6, 3.7]
20+
python-version: [3.6, 3.7, 3.8, 3.9]
2121
steps:
2222
- uses: actions/checkout@master
2323
- name: Setup Python ${{ matrix.python-version }}

setup.py

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,19 @@
1414
author="Tim Vink",
1515
author_email="[email protected]",
1616
license="MIT",
17-
python_requires=">=3.5",
17+
python_requires=">=3.6",
1818
classifiers=[
19-
"Programming Language :: Python :: 3",
20-
"License :: OSI Approved :: MIT License",
2119
"Operating System :: OS Independent",
20+
'Programming Language :: Python',
21+
'Programming Language :: Python :: 3',
22+
'Programming Language :: Python :: 3.6',
23+
'Programming Language :: Python :: 3.7',
24+
'Programming Language :: Python :: 3.8',
25+
'Programming Language :: Python :: 3.9',
26+
'Programming Language :: Python :: 3 :: Only',
27+
"License :: OSI Approved :: MIT License",
28+
'Topic :: Documentation',
29+
'Topic :: Text Processing',
2230
],
2331
install_requires=["mkdocs>=1.0"],
2432
packages=find_packages(),

0 commit comments

Comments
 (0)