From abbf29165a62d75702bcf43b32e6a635307d18e4 Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Sat, 21 Jul 2018 11:20:10 -0700 Subject: [PATCH] Depend on astor 0.7 --- .travis.yml | 2 +- setup.py | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 81ea5b8..7a10e06 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/setup.py b/setup.py index 45c5c36..113f53b 100755 --- a/setup.py +++ b/setup.py @@ -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': [