Skip to content

Commit 119c0ef

Browse files
authored
Merge pull request #12 from kmaehashi/update-requirements
Bump Python requirements (drop support for Python 3.5 and 3.6)
2 parents f288857 + e9f2326 commit 119c0ef

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Install
2626
Requirements
2727
------------
2828

29-
* Python 2.7, 3.5, 3.6 or 3.7.
29+
* Python 2.7 / 3.7 / 3.8 / 3.9 / 3.10
3030

3131
Usage
3232
-----

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,10 @@ def _read(filename):
2525
'Programming Language :: Python :: 2',
2626
'Programming Language :: Python :: 2.7',
2727
'Programming Language :: Python :: 3',
28-
'Programming Language :: Python :: 3.5',
29-
'Programming Language :: Python :: 3.6',
3028
'Programming Language :: Python :: 3.7',
29+
'Programming Language :: Python :: 3.8',
30+
'Programming Language :: Python :: 3.9',
31+
'Programming Language :: Python :: 3.10',
3132
],
3233
packages=find_packages(),
3334
test_suite = 'atwiki.test',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py35, py36, py37
2+
envlist = py27, py37, py38, py39, py310
33

44
[testenv]
55
commands =

0 commit comments

Comments
 (0)