From 8bb646fa047538dd98bd1838675aa342d7ccadbf Mon Sep 17 00:00:00 2001 From: Thoralf-M <46689931+Thoralf-M@users.noreply.github.com> Date: Mon, 7 Jun 2021 12:11:52 +0200 Subject: [PATCH] Use ubuntu-18.04 for Pythong workflow ``` Hi. I'm trying to get the python iota_client (0.2.0-a8) running on an AWS (Linux 2) (LightSail) server. It runs fine on my Mac (Catalina) but I'm getting an ImportError failure on first run on AWS: saying the required glibc version 2.29 is not found (AWS has glibc 2.26). ``` We had the same problem with the nodejs binding and building it with ubuntu-18.04 fixed it --- .github/workflows/python_binding_publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python_binding_publish.yml b/.github/workflows/python_binding_publish.yml index 0581fa874..57f620db9 100644 --- a/.github/workflows/python_binding_publish.yml +++ b/.github/workflows/python_binding_publish.yml @@ -9,7 +9,7 @@ on: jobs: linux-wheels: - runs-on: ubuntu-latest + runs-on: ubuntu-18.04 strategy: matrix: python-version: [3.6, 3.7, 3.8, 3.9]