Depend on astor 0.7

This commit is contained in:
Kodi Arfer 2018-07-21 11:20:10 -07:00
parent bd0486ebf2
commit abbf29165a
2 changed files with 2 additions and 5 deletions

View File

@ -9,7 +9,7 @@ python:
- pypy3
install:
- pip install -r requirements-travis.txt
- pip install --process-dependency-links -e .
- pip install -e .
script: pytest
cache: pip
after_success: make coveralls

View File

@ -30,7 +30,7 @@ class Install(install):
"." + filename[:-len(".hy")])
install.run(self)
install_requires = ['rply>=0.7.6', 'astor', 'funcparserlib>=0.3.6', 'clint>=0.4']
install_requires = ['rply>=0.7.6', 'astor>=0.7.1', 'funcparserlib>=0.3.6', 'clint>=0.4']
if os.name == 'nt':
install_requires.append('pyreadline>=2.1')
@ -40,9 +40,6 @@ setup(
name=PKG,
version=__version__,
install_requires=install_requires,
dependency_links=[
'git+https://github.com/berkerpeksag/astor.git#egg=astor-0.7.0'
],
cmdclass=dict(install=Install),
entry_points={
'console_scripts': [