Skip to content

Commit

Permalink
Included support to python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
maykcaldas committed Dec 10, 2024
1 parent 5a2deb7 commit dd55c36
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,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 @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11] # Our min supported Python version
python-version: [3.11, 3.13] # Our min and max supported Python versions
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v3
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,18 @@ 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 = [
"coredis",
"fhaviary>=0.8.2", # For core namespace
"limits",
"litellm>=1.44", # For LITELLM_LOG addition
"pydantic~=2.0,>=2.10.1,<2.10.2",
"tiktoken>=0.4.0",
"typing-extensions; python_version <= '3.11'", # for typing.override
'litellm; python_version < "3.13"', # NOTE: paper-qa==5.3 doesn't support 3.13 yet
'litellm>=1.49.1; python_version >= "3.13"', # For removal of imghdr
]
description = "A client to provide LLM responses for FutureHouse applications."
dynamic = ["version"]
Expand Down
19 changes: 12 additions & 7 deletions uv.lock

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

0 comments on commit dd55c36

Please sign in to comment.