diff --git a/.travis.yml b/.travis.yml index 17c1b2fc..54e2dd0b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,7 @@ matrix: install: - pip install -e . +- pip install git+git://github.com/rocky/python-xdis.git#egg=xdis-4.3.3 - pip install -r requirements-dev.txt script: diff --git a/__pkginfo__.py b/__pkginfo__.py index 3631e0c8..5e5baa1b 100644 --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -57,8 +57,8 @@ entry_points = { "pydisassemble=uncompyle6.bin.pydisassemble:main", ]} ftp_url = None -install_requires = ["spark-parser >= 1.8.9, < 1.9.0", ] - # "xdis >= 4.3.2, < 4.4.0"] +install_requires = ["spark-parser >= 1.8.9, < 1.9.0", + "xdis >= 4.3.2, < 4.4.0"] license = "GPL3" mailing_list = "python-debugger@googlegroups.com" diff --git a/setup.py b/setup.py index e12a79e4..060b692b 100755 --- a/setup.py +++ b/setup.py @@ -39,6 +39,5 @@ setup( test_suite = 'nose.collector', url = web, tests_require = ['nose>=1.0'], - dependency_links =['http://github.com/rocky/python-xdis/tarball/master#egg=xdis-4.3.3'], version = VERSION, zip_safe = zip_safe)