Revert version constrain to allow python 2.7 install packages

This commit is contained in:
Hanzhang Zeng (Roger) 2019-04-11 17:12:30 -07:00
Родитель 93a76f1e89
Коммит d3baccfb76
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -8,11 +8,11 @@ from os import path
from setuptools import setup, find_packages
NAME = "azure-functions-devops-build"
VERSION = "0.0.17"
VERSION = "0.0.18"
REQUIRES = ["msrest>=0.6.4",
"vsts>=0.1.25",
"Jinja2>=2.10"]
REQUIRES = ["msrest",
"vsts",
"jinja2"]
file_directory = path.abspath(path.dirname(__file__))