Skip to content

Commit

Permalink
stick to python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
rectalogic committed Oct 1, 2024
1 parent 8ac54bf commit cfe9771
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.12"]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv
Expand Down Expand Up @@ -39,5 +39,4 @@ jobs:
run: uv run pytest tests


#XXX cache models
#XXX lint
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.12
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[project]
name = "llm-transformers"
version = "0.1"
requires-python = ">= 3.10"
requires-python = ">= 3.12"
description = "Plugin for llm adding support for 🤗 Hugging Face Transformers"
readme = "README.md"
authors = [{name = "Andrew Wason"}]
Expand Down Expand Up @@ -39,7 +39,7 @@ requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.ruff]
target-version = "py310"
target-version = "py312"
line-length = 108

[tool.ruff.format]
Expand Down

0 comments on commit cfe9771

Please sign in to comment.