diff --git a/contributors.txt b/contributors.txt index ceba64e0a..441f9675d 100644 --- a/contributors.txt +++ b/contributors.txt @@ -207,3 +207,4 @@ YYYY/MM/DD, github id, Full name, email 2018/10/29, chrisaycock, Christopher Aycock, chris[at]chrisaycock[dot]com 2018/11/12, vinoski, Steve Vinoski, vinoski@ieee.org 2018/11/14, nxtstep, Adriaan (Arjan) Duz, codewithadriaan[et]gmail[dot]com +2018/11/15, amykyta3, Alex Mykyta, amykyta3@users.noreply.github.com diff --git a/runtime/Python3/setup.py b/runtime/Python3/setup.py index 908979249..4c64cc2e0 100644 --- a/runtime/Python3/setup.py +++ b/runtime/Python3/setup.py @@ -5,6 +5,9 @@ setup( version='4.7.1', packages=['antlr4', 'antlr4.atn', 'antlr4.dfa', 'antlr4.tree', 'antlr4.error', 'antlr4.xpath'], package_dir={'': 'src'}, + install_requires=[ + "typing ; python_version<'3.5'", + ], url='http://www.antlr.org', license='BSD', author='Eric Vergnaud, Terence Parr, Sam Harwell',