Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Release 0.0.4 #280

Merged
merged 1 commit into from
Aug 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/publish_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion agbenchmark/utils/dependencies/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def print_processed_dependencies(self, colors: bool = False) -> None:
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()
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down