File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 4
4
language : python
5
5
6
6
python :
7
- - " 3.5"
8
7
- " 3.6"
9
8
- " 3.7"
10
9
- " 3.8"
10
+ - " 3.9"
11
11
12
12
install : pip install tox-travis
13
13
Original file line number Diff line number Diff line change @@ -6,5 +6,8 @@ include *.md
6
6
# Include the license file
7
7
include LICENSE.txt
8
8
9
+ # Include setup.py
10
+ include setup.py
11
+
9
12
# Include the data files
10
13
recursive-include data *
Original file line number Diff line number Diff line change 101
101
# that you indicate you support Python 3. These classifiers are *not*
102
102
# checked by 'pip install'. See instead 'python_requires' below.
103
103
'Programming Language :: Python :: 3' ,
104
- 'Programming Language :: Python :: 3.5' ,
105
104
'Programming Language :: Python :: 3.6' ,
106
105
'Programming Language :: Python :: 3.7' ,
107
106
'Programming Language :: Python :: 3.8' ,
107
+ 'Programming Language :: Python :: 3.9' ,
108
108
'Programming Language :: Python :: 3 :: Only' ,
109
109
],
110
110
135
135
# 'Programming Language' classifiers above, 'pip install' will check this
136
136
# and refuse to install the project if the version does not match. See
137
137
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
138
- python_requires = '>=3.5 , <4' ,
138
+ python_requires = '>=3.6 , <4' ,
139
139
140
140
# This field lists other packages that your project depends on to run.
141
141
# Any package you put here will be installed by pip when your project is
Original file line number Diff line number Diff line change 13
13
# and also to help confirm pull requests to this project.
14
14
15
15
[tox]
16
- envlist = py{35, 36,37,38}
16
+ envlist = py{36,37,38,39 }
17
17
18
18
# Define the minimal tox version required to run;
19
19
# if the host tox is less than this the tool with create an environment and
You can’t perform that action at this time.
0 commit comments