File tree Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ language: python
3
3
services :
4
4
- docker
5
5
python :
6
- - " 2.7"
7
6
- " 3.4"
8
7
- " 3.5"
9
8
- " 3.6"
Original file line number Diff line number Diff line change 8
8
9
9
import sys
10
10
11
- tests_require = []
12
-
13
- # add unittest2 to tests_require for python < 2.7
14
- if sys .version_info < (2 , 7 ):
15
- tests_require .append ("unittest2" )
16
-
17
11
18
12
class TestCommand (Command ):
19
13
user_options = []
@@ -34,7 +28,7 @@ def run(self):
34
28
unittest .main (tests , argv = sys .argv [:1 ])
35
29
36
30
37
- version = "0.31 "
31
+ version = "0.40 "
38
32
39
33
setup (
40
34
name = "mysql-replication" ,
@@ -49,6 +43,5 @@ def run(self):
49
43
"pymysqlreplication.constants" ,
50
44
"pymysqlreplication.tests" ],
51
45
cmdclass = {"test" : TestCommand },
52
- extras_require = {'test' : tests_require },
53
46
install_requires = ['pymysql>=0.10' ],
54
47
)
You can’t perform that action at this time.
0 commit comments