This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
This script upgrades all outdated python packages. | |
""" | |
__author__ = "serafeimgr" | |
from multiprocessing import Pool, cpu_count | |
from subprocess import PIPE, Popen | |
def run_command(command): |