See if travis will take spark 1.2.1

This commit is contained in:
rocky
2016-05-14 15:28:16 -04:00
parent b69001ccbf
commit 51df8d8cbe
3 changed files with 14 additions and 8 deletions

View File

@@ -36,7 +36,7 @@ entry_points={
'pydisassemble=uncompyle6.bin.pydisassemble:main', 'pydisassemble=uncompyle6.bin.pydisassemble:main',
]} ]}
ftp_url = None ftp_url = None
install_requires = ['spark-parser >= 1.1.1'] install_requires = ['spark-parser >= 1.2.1']
license = 'MIT' license = 'MIT'
mailing_list = 'python-debugger@googlegroups.com' mailing_list = 'python-debugger@googlegroups.com'
modname = 'uncompyle6' modname = 'uncompyle6'
@@ -49,7 +49,15 @@ zip_safe = True
import os.path import os.path
def read(*rnames): def get_srcdir():
return open(os.path.join(os.path.dirname(__file__), *rnames)).read() filename = os.path.normcase(os.path.dirname(os.path.abspath(__file__)))
return os.path.realpath(filename)
srcdir = get_srcdir()
def read(*rnames):
return open(os.path.join(srcdir, *rnames)).read()
# Get info from files; set: long_description and VERSION
long_description = ( read("README.rst") + '\n' ) long_description = ( read("README.rst") + '\n' )
exec(read('uncompyle6/version.py'))

View File

@@ -1 +1 @@
spark-parser >= 1.1.1 spark-parser >= 1.2.1

View File

@@ -6,12 +6,10 @@ from __pkginfo__ import \
author, author_email, install_requires, \ author, author_email, install_requires, \
license, long_description, classifiers, \ license, long_description, classifiers, \
entry_points, modname, py_modules, \ entry_points, modname, py_modules, \
short_desc, web, zip_safe short_desc, VERSION, web, \
zip_safe
from setuptools import setup, find_packages from setuptools import setup, find_packages
exec(open('uncompyle6/version.py').read())
setup( setup(
author = author, author = author,
author_email = author_email, author_email = author_email,