Depend on an unstable version of astor

We need it for Python 3.7.
This commit is contained in:
Kodi Arfer 2018-03-24 12:33:25 -07:00
parent 97cb19a8a2
commit f27eda16e1
2 changed files with 5 additions and 2 deletions

View File

@ -13,7 +13,7 @@ matrix:
- python: "3.7-dev"
install:
- pip install -r requirements-travis.txt
- pip install -e .
- pip install --process-dependency-links -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.5', 'astor>=0.6', 'clint>=0.4']
install_requires = ['rply>=0.7.5', 'astor', 'clint>=0.4']
if os.name == 'nt':
install_requires.append('pyreadline>=2.1')
@ -40,6 +40,9 @@ 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': [