From d58122c2ec8e7db034ebe0b8163ff8789500bd3f Mon Sep 17 00:00:00 2001 From: Kim Ebert Date: Mon, 18 Aug 2025 07:53:21 -0600 Subject: [PATCH] fix: fix repos Signed-off-by: Kim Ebert --- .github/workflows/build/Dockerfile.ubuntu-2204 | 2 +- build-scripts/ubuntu-2204/postinst | 2 +- plenum/__metadata__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build/Dockerfile.ubuntu-2204 b/.github/workflows/build/Dockerfile.ubuntu-2204 index 0de89a80f1..0966a7fcca 100644 --- a/.github/workflows/build/Dockerfile.ubuntu-2204 +++ b/.github/workflows/build/Dockerfile.ubuntu-2204 @@ -30,7 +30,7 @@ RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 9692C00E657DDE61 && # echo "deb https://repo.sovrin.org/sdk/deb bionic master" >> /etc/apt/sources.list # TODO change this to official repo -RUN echo "deb [trusted=yes] http://209.141.41.82:8000/ packagedir/" >> /etc/apt/sources.list +RUN echo "deb [trusted=yes] https://indicio.jfrog.io/artifactory/indy/ jammy dev" >> /etc/apt/sources.list RUN apt-get update -y && apt-get install -y \ diff --git a/build-scripts/ubuntu-2204/postinst b/build-scripts/ubuntu-2204/postinst index 31b5145050..bd8a31d2a8 100644 --- a/build-scripts/ubuntu-2204/postinst +++ b/build-scripts/ubuntu-2204/postinst @@ -2,7 +2,7 @@ # Automatically added from template: if which py3compile >/dev/null 2>&1; then - py3compile -O -p {package_name} /usr/local/lib/python3.8/dist-packages/ + py3compile -O -p {package_name} /usr/local/lib/python3.10/dist-packages/ fi # End automatically added section diff --git a/plenum/__metadata__.py b/plenum/__metadata__.py index f225d3851b..44959be2ac 100644 --- a/plenum/__metadata__.py +++ b/plenum/__metadata__.py @@ -57,7 +57,7 @@ def set_manifest(manifest: Any, manifest_file: str = MANIFEST_FILE): __author__ = "Hyperledger" __author_email__ = 'hyperledger-indy@lists.hyperledger.org' __maintainer__ = 'Indicio' -__maintainer_email__ = 'support@indicio.tech ' +__maintainer_email__ = 'support@indicio.tech' __url__ = 'https://github.com/Indicio-tech/indy-plenum' __description__ = 'Plenum Byzantine Fault Tolerant Protocol' __long_description__ = 'Plenum Byzantine Fault Tolerant Protocol'