Skip to content

Commit 90d44ab

Browse files
authored
Remove Python 3.5 and add 3.9 (pypa#132)
Signed-off-by: Gábor Lipták <[email protected]>
1 parent 52966de commit 90d44ab

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
language: python
55

66
python:
7-
- "3.5"
87
- "3.6"
98
- "3.7"
109
- "3.8"
10+
- "3.9"
1111

1212
install: pip install tox-travis
1313

MANIFEST.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,8 @@ include *.md
66
# Include the license file
77
include LICENSE.txt
88

9+
# Include setup.py
10+
include setup.py
11+
912
# Include the data files
1013
recursive-include data *

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@
101101
# that you indicate you support Python 3. These classifiers are *not*
102102
# checked by 'pip install'. See instead 'python_requires' below.
103103
'Programming Language :: Python :: 3',
104-
'Programming Language :: Python :: 3.5',
105104
'Programming Language :: Python :: 3.6',
106105
'Programming Language :: Python :: 3.7',
107106
'Programming Language :: Python :: 3.8',
107+
'Programming Language :: Python :: 3.9',
108108
'Programming Language :: Python :: 3 :: Only',
109109
],
110110

@@ -135,7 +135,7 @@
135135
# 'Programming Language' classifiers above, 'pip install' will check this
136136
# and refuse to install the project if the version does not match. See
137137
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
138-
python_requires='>=3.5, <4',
138+
python_requires='>=3.6, <4',
139139

140140
# This field lists other packages that your project depends on to run.
141141
# Any package you put here will be installed by pip when your project is

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# and also to help confirm pull requests to this project.
1414

1515
[tox]
16-
envlist = py{35,36,37,38}
16+
envlist = py{36,37,38,39}
1717

1818
# Define the minimal tox version required to run;
1919
# if the host tox is less than this the tool with create an environment and

0 commit comments

Comments
 (0)