From f9401d94c2821dcbc00e858ce6d8a7e9454f6378 Mon Sep 17 00:00:00 2001 From: heitorlessa Date: Sun, 31 May 2020 20:14:24 +0100 Subject: [PATCH] fix: support py2.7 to accommodate current setup Signed-off-by: heitorlessa --- test/test_poetry_project.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test_poetry_project.py b/test/test_poetry_project.py index 01c3f83c..bf7c6bd4 100644 --- a/test/test_poetry_project.py +++ b/test/test_poetry_project.py @@ -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"]