From 9f519ed208a90d2c5365108847494e989528b2e4 Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Mon, 8 Apr 2019 14:52:44 -0400 Subject: [PATCH] Depend on astor master We need it for Python 3.8. --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8ee8be6..ef25ac5 100755 --- a/setup.py +++ b/setup.py @@ -31,7 +31,11 @@ class Install(install): "." + filename[:-len(".hy")]) install.run(self) -install_requires = ['rply>=0.7.7', 'astor>=0.7.1', 'funcparserlib>=0.3.6', 'clint>=0.4'] +install_requires = [ + 'rply>=0.7.7', + 'astor @ https://github.com/berkerpeksag/astor/archive/master.zip', + 'funcparserlib>=0.3.6', + 'clint>=0.4'] if os.name == 'nt': install_requires.append('pyreadline>=2.1')