From 4a44d23aed0a17a4d0e2bd6f92d1d96ce5d22e11 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Thu, 2 Dec 2021 23:39:21 +0300 Subject: [PATCH] Revert "osmocom-bb-host-master: install python-enum as fake_trx dependency" This reverts commit c034da05476429f1470c1245ad949fe45f08dc97. Python 2 is EOL, we are using Python 3 now with built-in enums. Change-Id: I6aa653f2165bb9a81aa8253fabc0fb436bcba009 --- osmocom-bb-host-master/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/osmocom-bb-host-master/Dockerfile b/osmocom-bb-host-master/Dockerfile index 2e86767e..3f9c108b 100644 --- a/osmocom-bb-host-master/Dockerfile +++ b/osmocom-bb-host-master/Dockerfile @@ -18,11 +18,10 @@ RUN apt-key add /tmp/Release.key && \ rm /tmp/Release.key && \ echo "deb " $OSMOCOM_REPO " ./" > /etc/apt/sources.list.d/osmocom-nightly.list -# python-enum34 is a dependecy of fake_trx as long we're using python2 ADD $OSMOCOM_REPO/Release /tmp/Release RUN apt-get update && \ apt-get install -y --no-install-recommends \ - libosmocore-dev python-enum34 && \ + libosmocore-dev && \ apt-get clean WORKDIR /tmp