TravisCI: try to get xdis from github

This commit is contained in:
rocky
2020-04-16 23:53:44 -04:00
parent 4796fb9e70
commit ebc22e32e6
3 changed files with 3 additions and 3 deletions

View File

@@ -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:

View File

@@ -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"

View File

@@ -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)