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
33services :
44 - docker
55python :
6- - " 2.7"
76 - " 3.4"
87 - " 3.5"
98 - " 3.6"
Original file line number Diff line number Diff line change 88
99import sys
1010
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-
1711
1812class TestCommand (Command ):
1913 user_options = []
@@ -34,7 +28,7 @@ def run(self):
3428 unittest .main (tests , argv = sys .argv [:1 ])
3529
3630
37- version = "0.31 "
31+ version = "0.40 "
3832
3933setup (
4034 name = "mysql-replication" ,
@@ -49,6 +43,5 @@ def run(self):
4943 "pymysqlreplication.constants" ,
5044 "pymysqlreplication.tests" ],
5145 cmdclass = {"test" : TestCommand },
52- extras_require = {'test' : tests_require },
5346 install_requires = ['pymysql>=0.10' ],
5447)
You can’t perform that action at this time.
0 commit comments