Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.11", "3.12", "3.13"]
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ repos:
rev: v1.6.0
hooks:
- id: vermin
args: ['-t=3.10-', '--violations']
args: ['-t=3.11-', '--violations']
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.12.3
3.14
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Counterpoint is a lightweight library that orchestrates LLM completions and agen

## Requirements

- Python 3.10 or higher
- Python 3.11 or higher

## Installation

Expand Down Expand Up @@ -382,7 +382,7 @@ pre-commit install
make pre-commit-run
```

The hooks will now run automatically on `git commit` and prevent commits that don't meet Python 3.10 compatibility requirements.
The hooks will now run automatically on `git commit` and prevent commits that don't meet Python 3.11 compatibility requirements.

### Security

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = " A lightweight library that orchestrates LLM completions and agen
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Giskard R&D", email = "[email protected]" }]
requires-python = ">=3.11"
requires-python = ">=3.11,<4"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

While this change correctly declares support for Python versions up to 4.0 (including 3.14), the PR description also mentions adding Python 3.14 to the CI matrix. To ensure the library is properly tested and validated on this version, the CI configuration should be updated accordingly. This change seems to be missing from the current pull request.

dependencies = [
"litellm>=1.72.0,<2",
"pydantic>=2.11.0,<3",
Expand Down
Loading
Loading