Depend on an unstable version of astor
We need it for Python 3.7.
This commit is contained in:
parent
97cb19a8a2
commit
f27eda16e1
@ -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
|
||||
|
5
setup.py
5
setup.py
@ -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': [
|
||||
|
Loading…
Reference in New Issue
Block a user