Builds started failing while installing awscli

Our builds just started failing with:

ERROR: Could not find a version that satisfies the requirement botocore==1.29.21 (from awscli)
ERROR: No matching distribution found for botocore==1.29.21 (from awscli)

Our config.yml (relevant info):

  • image: cimg/node:16.15.0

       command: |
         sudo apt-get -y -qq update
         sudo apt-get -y install python3-pip python-dev-is-python2 libssl-dev
         sudo pip3 install awscli
    

Any ideas? This was fine less than 24 hours ago.

Ha…hadn’t looked at this in a long time…problem was python-dev-is-python2 should be python-dev-is-python3

problem solved