From e3f1e2184ffc8da3cbcd0fd1e4fd566d9d318ee6 Mon Sep 17 00:00:00 2001 From: merwanehamadi Date: Wed, 9 Aug 2023 10:04:57 -0700 Subject: [PATCH] Release 0.0.4 (#280) Signed-off-by: Merwane Hamadi --- .github/workflows/publish_package.yml | 3 +++ agbenchmark/utils/dependencies/main.py | 2 +- pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_package.yml b/.github/workflows/publish_package.yml index 103f1340..0d2440ae 100644 --- a/.github/workflows/publish_package.yml +++ b/.github/workflows/publish_package.yml @@ -11,6 +11,9 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v2 + with: + submodules: true + fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v2 diff --git a/agbenchmark/utils/dependencies/main.py b/agbenchmark/utils/dependencies/main.py index 9e3acf54..cf09b6c8 100644 --- a/agbenchmark/utils/dependencies/main.py +++ b/agbenchmark/utils/dependencies/main.py @@ -192,7 +192,7 @@ class DependencyManager(object): colorama.deinit() @property - def sorted_items(self, show_graph: Optional[bool] = True) -> Generator: + def sorted_items(self, show_graph: Optional[bool] = False) -> Generator: """Get a sorted list of tests where all tests are sorted after their dependencies.""" # Build a directed graph for sorting dag = networkx.DiGraph() diff --git a/pyproject.toml b/pyproject.toml index 9dbe11f1..df648332 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "agbenchmark" -version = "0.0.3" +version = "0.0.4" description = "Benchmarking the performance of agents far and wide, regardless of how they are set up and how they work" authors = ["Silen Naihin "] license = "MIT"