Skip to content

Commit e56a21f

Browse files
authored
Merge pull request #15 from tk0miya/drop_py35
Drop python3.5 support
2 parents bcda176 + 67bc049 commit e56a21f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Release 2.0.0 (unreleased)
22
==========================
33

4+
* Drop python-3.5 support
45
* Remove deprecated method: ``HTMLHelpBuilder.open_file()``
56
* #6685: htmlhelp builder should generate HTML4 docs instead of HTML5
67

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,10 @@ def get_version():
5353
'Operating System :: OS Independent',
5454
'Programming Language :: Python',
5555
'Programming Language :: Python :: 3',
56-
'Programming Language :: Python :: 3.5',
5756
'Programming Language :: Python :: 3.6',
5857
'Programming Language :: Python :: 3.7',
58+
'Programming Language :: Python :: 3.8',
59+
'Programming Language :: Python :: 3.9',
5960
'Framework :: Sphinx',
6061
'Framework :: Sphinx :: Extension',
6162
'Topic :: Documentation',
@@ -64,7 +65,7 @@ def get_version():
6465
'Topic :: Utilities',
6566
],
6667
platforms='any',
67-
python_requires=">=3.5",
68+
python_requires=">=3.6",
6869
packages=find_packages(exclude=['tests']),
6970
include_package_data=True,
7071
extras_require=extras_require,

0 commit comments

Comments
 (0)