Release 0.0.4 (#280)

Signed-off-by: Merwane Hamadi <merwanehamadi@gmail.com>
This commit is contained in:
merwanehamadi
2023-08-09 10:04:57 -07:00
committed by GitHub
parent 7d60ce5f44
commit e3f1e2184f
3 changed files with 5 additions and 2 deletions

View File

@@ -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

View File

@@ -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()

View File

@@ -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 <silen.naihin@gmail.com>"]
license = "MIT"