"language: python" seems to force amd64

When trying to install docker-compose manually (due to Docker-compose is not available on arm64) w/ language: python, arch: arm64 was seemingly ignored. Please see the following job: https://travis-ci.com/egor-tensin/fr24feed/builds/143994508.

The workaround I used was to use language: minimal and install the required tools manually:

language: minimal
os: linux
dist: bionic
arch: arm64
addons:
  apt:
    update: true
    packages:
      - python3-dev
      - python3-pip
      - python3-setuptools
      - python3-wheel
install:
  - pip3 install -IU docker-compose

But this is quite inconvenient.

Sorry, this is a non-issue, I just wasn’t patient enough to wait for the “Amd64” badge to switch to “Arm64” on the job page. This can be ignored.

Thank you for coming back on that, @egor-tensin. Happy building!