Skip to content

Commit 1f8849f

Browse files
committed
Wand 0.3 was released
1 parent d85d9e1 commit 1f8849f

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ def __repr__(self):
270270
intersphinx_mapping = {
271271
'python': ('http://docs.python.org/', None),
272272
'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),
274274
'flask': ('http://flask.pocoo.org/docs/', None)
275275
}
276276

setup.py

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import os.path
2-
import sys
32

43
try:
54
from setuptools import setup, find_packages
@@ -35,16 +34,9 @@ def run_tests(self):
3534

3635
install_requires = [
3736
'SQLAlchemy >= 0.8.0',
38-
'Wand >= 0.2.0' if sys.version_info < (3,) else 'Wand >= 0.3.0a2'
37+
'Wand >= 0.3.0'
3938
]
4039

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-
4840

4941
setup(
5042
name='SQLAlchemy-ImageAttach',
@@ -58,7 +50,6 @@ def run_tests(self):
5850
packages=find_packages(exclude=['tests']),
5951
install_requires=install_requires,
6052
tests_require=['pytest >= 2.3.0', 'WebOb'],
61-
dependency_links=dependency_links,
6253
classifiers=[
6354
'Development Status :: 3 - Alpha',
6455
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)