From 31442f1caa73007ade6bdbe6a6993403af83fea8 Mon Sep 17 00:00:00 2001 From: Noah Beard Date: Wed, 3 May 2023 17:10:12 -0400 Subject: [PATCH] Update pip differently and ignore installed since we cannot seem to install cleanly --- .builder/actions/aws_crt_python.py | 1 + requirements-dev.txt | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.builder/actions/aws_crt_python.py b/.builder/actions/aws_crt_python.py index 382395d91..add7cb940 100644 --- a/.builder/actions/aws_crt_python.py +++ b/.builder/actions/aws_crt_python.py @@ -18,6 +18,7 @@ def run(self, env): env.shell.setenv('AWS_TEST_S3', '1') actions = [ + [python, "-m", "pip", "install", "--upgrade", "--ignore-installed", "pip"] [python, '-m', 'pip', 'install', '--upgrade', '--requirement', 'requirements-dev.txt'], Builder.SetupCrossCICrtEnvironment(), [python, '-m', 'pip', 'install', '--verbose', '.'], diff --git a/requirements-dev.txt b/requirements-dev.txt index cee04ed8c..7d740f57a 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,4 +1,3 @@ -pip # listed here so we can upgrade it as same time as everything else autopep8 # for code formatting setuptools # for installing from source markupsafe==2.0.1 # needed due to sphinx having a sub-dependency on jinja2 but jinja2 does not install markupsafe