Skip to content

Commit

Permalink
fix: Remove Python 3.9 support
Browse files Browse the repository at this point in the history
To be able to use 3.10+ union style type hints
  • Loading branch information
RezaRahemtola committed Dec 6, 2024
1 parent 96d7a09 commit f709344
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
working-directory: ./libertai_agents
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 2 additions & 3 deletions libertai_agents/poetry.lock

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

2 changes: 1 addition & 1 deletion libertai_agents/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.9"
python = "^3.10"
transformers = "^4.46.0"
pydantic = "^2.5.2"
aiohttp = "^3.10.11"
Expand Down

0 comments on commit f709344

Please sign in to comment.