Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Included support to python 3.13 #176

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
if: github.event_name == 'pull_request' # pre-commit-ci/lite-action only runs here
strategy:
matrix:
python-version: [3.11, 3.12] # Our min and max supported Python versions
python-version: [3.11, 3.13] # Our min and max supported Python versions
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11, 3.12] # Our min and max supported Python versions
python-version: [3.11, 3.13] # Our min and max supported Python versions
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python",
]
dependencies = [
"aiofiles",
"dm-tree",
"fhaviary>=0.8.2", # For core namespace
"httpx",
"litellm>=1.52.15", # For litellm.ssl_verify
"networkx[default]~=3.4", # Pin for pydot fix
"numpy>=1.20", # For numpy.typing
"pydantic~=2.0",
Expand All @@ -35,6 +35,8 @@ dependencies = [
"tqdm",
"typing-extensions; python_version <= '3.11'", # for typing.override
"usearch>=2.13", # For py.typed
'litellm; python_version < "3.13"',
'litellm>=1.49.1; python_version >= "3.13"', # For removal of imghdr
]
description = "Agent framework for constructing language model agents and training on constructive tasks."
dynamic = ["version"]
Expand Down
75 changes: 66 additions & 9 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading