From b2af11deff70446faece5b366ce25d15f194f032 Mon Sep 17 00:00:00 2001 From: Gautam Saluja <52312085+gsaluja9@users.noreply.github.com> Date: Tue, 13 Jan 2026 17:18:41 -0500 Subject: [PATCH 1/2] change runs on to benchmark (#646) --- .github/workflows/develop.yml | 6 ++---- .github/workflows/main.yml | 3 +-- test/adb_timing_tests.py | 2 +- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 302059a9..cae2c7fe 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -9,8 +9,7 @@ jobs: build-test: runs-on: - - self-hosted - - deployer + - benchmark steps: @@ -43,8 +42,7 @@ jobs: - build-test runs-on: - - self-hosted - - deployer + - benchmark steps: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 767fdbc5..55ed1f1a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,8 +42,7 @@ jobs: - build_and_test runs-on: - - self-hosted - - deployer + - benchmark steps: diff --git a/test/adb_timing_tests.py b/test/adb_timing_tests.py index 90238e5f..7ccdb4fb 100644 --- a/test/adb_timing_tests.py +++ b/test/adb_timing_tests.py @@ -13,4 +13,4 @@ os.system(command) diff = datetime.now() - start print(diff) - assert diff.total_seconds() <= 1.0, f"Command {command} took too long" + assert diff.total_seconds() <= 1.5, f"Command {command} took too long" From 5df8579aab9b384d82ba8eaa44af26fb156ecda8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 13 Jan 2026 22:24:40 +0000 Subject: [PATCH 2/2] Version bump: 0.4.53 to 0.4.55 --- aperturedb/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aperturedb/__init__.py b/aperturedb/__init__.py index 08a680c8..3babebc7 100644 --- a/aperturedb/__init__.py +++ b/aperturedb/__init__.py @@ -10,7 +10,7 @@ import signal import sys -__version__ = "0.4.53" +__version__ = "0.4.55" logger = logging.getLogger(__name__)