Ubuntu 24.04 ships with Python 3.12, which deprecates a few things we use (distutils.version, datetime.datetime.utc*).
More crucially, bob-builder uses boto, which due to a weird vendoring of six is incompatible with Python 3.12, so we need to update it to 0.0.20, which uses boto3.
That version picks up S3_REGION from the environment, but our S3_REGION values so far contained a prefix of "s3.".
Ubuntu 24.04 ships with Python 3.12, which deprecates a few things we use (
distutils.version
,datetime.datetime.utc*
).More crucially, bob-builder uses
boto
, which due to a weird vendoring ofsix
is incompatible with Python 3.12, so we need to update it to 0.0.20, which usesboto3
.That version picks up
S3_REGION
from the environment, but ourS3_REGION
values so far contained a prefix of "s3.
".GUS-W-15794852