Commit 93372134 authored by Gao, Xiang's avatar Gao, Xiang Committed by Farhad Ramezanghorbani
Browse files

clean up py2 in setup.py (#390)

* clean up py2 in setup.py

* Update setup.py
parent c72ebd89
from setuptools import setup, find_packages from setuptools import setup, find_packages
import sys
with open("README.md", "r") as fh: with open("README.md", "r") as fh:
long_description = fh.read() long_description = fh.read()
...@@ -23,7 +22,4 @@ setup_attrs = { ...@@ -23,7 +22,4 @@ setup_attrs = {
], ],
} }
if sys.version_info[0] < 3:
setup_attrs['install_requires'].append('typing')
setup(**setup_attrs) setup(**setup_attrs)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment