Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
davorrunje committed Nov 21, 2024
1 parent b2f56ba commit 21b16cf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 16 deletions.
2 changes: 1 addition & 1 deletion fastagency/__about__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""The fastest way to bring multi-agent workflows to production."""

__version__ = "0.3.4"
__version__ = "0.4.0-dev0"
13 changes: 1 addition & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ autogen-04dev = [
]

ag2 = [
"ag2[anthropic,together]>=0.3.0,<0.4",
"ag2[anthropic,together,websurfer]>=0.3.0,<0.4",
"together>=1.2.11,<1.3", # ToDo: together 1.3.0 has issues with our dev dependencies
"markdownify==0.13.1", # Needed by autogen.WebSurferAgent but not included
]
Expand Down Expand Up @@ -158,12 +158,6 @@ testing = [
]


dev-autogen = [
"fastagency[autogen,submodules,lint,testing,devdocs]",
"pre-commit==4.0.1",
"detect-secrets==1.5.0",
]

dev-ag2 = [
"fastagency[ag2,submodules,lint,testing,devdocs]",
"pre-commit==4.0.1",
Expand All @@ -176,11 +170,6 @@ dev-autogen-04dev = [
"detect-secrets==1.5.0",
]

dev = [
"fastagency[dev-autogen]",
]


[project.urls]
Homepage = "https://github.com/airtai/fastagency"
Documentation = "https://fastagency.ai/latest/"
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-docs-pre-commit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ cd "$(dirname "$0")"/..
# In my case, I need to use a custom index URL.
# Avoid pip spending time quietly retrying since
# likely cause of failure is lack of VPN connection.
pip install --editable ".[dev]" \
pip install --editable ".[dev-ag2]" \
--retries 1 \
--no-input \
--quiet
Expand Down
2 changes: 1 addition & 1 deletion scripts/lint-pre-commit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ cd "$(dirname "$0")"/..
# In my case, I need to use a custom index URL.
# Avoid pip spending time quietly retrying since
# likely cause of failure is lack of VPN connection.
pip install --editable ".[dev]" \
pip install --editable ".[dev-ag2]" \
--retries 1 \
--no-input \
--quiet
Expand Down
2 changes: 1 addition & 1 deletion scripts/test-no-llm-pre-commit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ cd "$(dirname "$0")"/..
# In my case, I need to use a custom index URL.
# Avoid pip spending time quietly retrying since
# likely cause of failure is lack of VPN connection.
pip install --editable ".[dev]" \
pip install --editable ".[dev-ag2]" \
--retries 1 \
--no-input \
--quiet
Expand Down

0 comments on commit 21b16cf

Please sign in to comment.