1#!/usr/bin/env python 2# -*- coding: utf-8 -*- 3import os 4 5if os.getenv("APPVEYOR_REPO_TAG") != "true": 6 print("Skip step. It's not TAG") 7else: 8 os.system("pip install conan conan-package-tools") 9