File tree 2 files changed +2
-11
lines changed
2 files changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ def __repr__(self):
270
270
intersphinx_mapping = {
271
271
'python' : ('http://docs.python.org/' , None ),
272
272
'sqlalchemy' : ('http://docs.sqlalchemy.org/en/rel_0_8/' , None ),
273
- 'wand' : ('http://docs.wand-py.org/en/0.2 -maintenance/' , None ),
273
+ 'wand' : ('http://docs.wand-py.org/en/0.3 -maintenance/' , None ),
274
274
'flask' : ('http://flask.pocoo.org/docs/' , None )
275
275
}
276
276
Original file line number Diff line number Diff line change 1
1
import os .path
2
- import sys
3
2
4
3
try :
5
4
from setuptools import setup , find_packages
@@ -35,16 +34,9 @@ def run_tests(self):
35
34
36
35
install_requires = [
37
36
'SQLAlchemy >= 0.8.0' ,
38
- 'Wand >= 0.2.0' if sys . version_info < ( 3 ,) else 'Wand >= 0.3.0a2 '
37
+ 'Wand >= 0.3.0 '
39
38
]
40
39
41
- dependency_links = []
42
-
43
- if sys .version_info >= (3 ,):
44
- dependency_links .extend ([
45
- 'https://github.com/dahlia/wand/archive/python3.tar.gz#egg=Wand-0.3.0a2'
46
- ])
47
-
48
40
49
41
setup (
50
42
name = 'SQLAlchemy-ImageAttach' ,
@@ -58,7 +50,6 @@ def run_tests(self):
58
50
packages = find_packages (exclude = ['tests' ]),
59
51
install_requires = install_requires ,
60
52
tests_require = ['pytest >= 2.3.0' , 'WebOb' ],
61
- dependency_links = dependency_links ,
62
53
classifiers = [
63
54
'Development Status :: 3 - Alpha' ,
64
55
'Intended Audience :: Developers' ,
You can’t perform that action at this time.
0 commit comments