chore: set python_requires to >=3.6

recent changes in frappe/__init__.py make use of f-strings that are only
available on python>=3.6

Signed-off-by: Chinmay D. Pai <chinmaydpai@gmail.com>
This commit is contained in:
Chinmay D. Pai 2020-05-13 02:03:12 +05:30
parent d53b88a72f
commit d94e48dbfb
No known key found for this signature in database
GPG key ID: 75507BE256F40CED

View file

@ -58,5 +58,6 @@ setup(
cmdclass = \
{
'clean': CleanCommand
}
},
python_requires='>=3.6'
)