Remove the dependency on importlib for Python <= 2.7. It's not actually required.

This commit is contained in:
Dave Page
2019-03-20 11:58:09 +00:00
parent e1ae502725
commit 48c3763e95
2 changed files with 0 additions and 10 deletions

View File

@@ -96,12 +96,6 @@ setup(
install_requires=required,
extras_require={
":python_version<='2.7'": [
"importlib==1.0.3"
],
},
entry_points={
'console_scripts': ['pgadmin4=pgadmin4.pgAdmin4.__init__:main'],
},