fix: support py2.7 to accommodate current setup

Signed-off-by: heitorlessa <lessa@amazon.co.uk>
This commit is contained in:
heitorlessa
2020-05-31 20:14:24 +01:00
parent 4fb7874ca3
commit f9401d94c2
+2 -1
View File
@@ -12,13 +12,14 @@ classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.6"
python = "^2.7"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]