Skip to content

Commit 3f5d729

Browse files
committed
Merge pull request #2 from Overseas-Student-Living/PLAT-832
Plat 832
2 parents 53e9667 + 4baa9ea commit 3f5d729

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed
271 KB
Binary file not shown.

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name='sqlalchemy-diff',
16-
version='0.0.3',
16+
version='0.0.4',
1717
description='Compare two database schemas using sqlalchemy.',
1818
long_description=readme,
1919
author='student.com',
@@ -22,7 +22,7 @@
2222
packages=find_packages(exclude=['docs', 'test', 'test.*']),
2323
install_requires=[
2424
"six==1.10.0",
25-
"mock==1.3.0",
25+
"mock>=1.3.0",
2626
"sqlalchemy-utils==0.31.2",
2727
],
2828
extras_require={
@@ -34,6 +34,9 @@
3434
"Sphinx==1.3.1",
3535
],
3636
},
37+
dependency_links=[
38+
"dists/mysql-connector-python-2.0.4.zip",
39+
],
3740
zip_safe=True,
3841
license='Apache License, Version 2.0',
3942
classifiers=[

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ skip_missing_interpreters=True
55

66
[testenv]
77
commands =
8-
pip install -e ".[dev]" --allow-external mysql-connector-python
8+
pip install -e ".[dev]" --process-dependency-links
99
py.test

0 commit comments

Comments
 (0)