From d7c6fd8fa176f52c3d20f8ccde2fa608e878e7c0 Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Mon, 21 Jan 2019 19:48:54 -0500 Subject: [PATCH] Upgrade rply to avoid a deprecation warning --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a8a28ca..4844255 100755 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ class Install(install): "." + filename[:-len(".hy")]) install.run(self) -install_requires = ['rply>=0.7.6', 'astor>=0.7.1', 'funcparserlib>=0.3.6', 'clint>=0.4'] +install_requires = ['rply>=0.7.7', 'astor>=0.7.1', 'funcparserlib>=0.3.6', 'clint>=0.4'] if os.name == 'nt': install_requires.append('pyreadline>=2.1')