From 1adfff911f53a08a7ca861b78ef09763cbe001ee Mon Sep 17 00:00:00 2001 From: Greg Albrecht Date: Mon, 31 Jul 2023 11:39:39 -0700 Subject: [PATCH] test fix for CI builds --- .github/workflows/debian.yml | 2 ++ lincot/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml index 62d156f..4afac44 100644 --- a/.github/workflows/debian.yml +++ b/.github/workflows/debian.yml @@ -26,11 +26,13 @@ jobs: - name: Build Debian/Apt sdist_dsc run: | + python3 -m pip install . rm -Rf deb_dist/* python3 setup.py --command-packages=stdeb.command sdist_dsc - name: Build Debian/Apt bdist_deb run: | + python3 -m pip install . export REPO_NAME=$(echo ${{ github.repository }} | awk -F"/" '{print $2}') python3 setup.py --command-packages=stdeb.command bdist_deb ls -al deb_dist/ diff --git a/lincot/__init__.py b/lincot/__init__.py index 4097215..5e0ed24 100644 --- a/lincot/__init__.py +++ b/lincot/__init__.py @@ -19,7 +19,7 @@ :source: """ -__version__ = "1.0.2-beta4" +__version__ = "1.0.2-beta5" __author__ = "Greg Albrecht " __copyright__ = "Copyright 2023 Sensors & Signals LLC" __license__ = "Apache License, Version 2.0"