Skip to content

Commit

Permalink
ci: fix coverage + minor touch ups
Browse files Browse the repository at this point in the history
  • Loading branch information
Saransh-cpp committed Dec 22, 2024
1 parent 5d478d0 commit 347a9d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -21,8 +21,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install hatch
pip install .
pip install "coverage[toml]"
- name: Lint with ruff
run: |
hatch run dev:check
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "bpx"
dynamic = ["version"]
description = "An implementation of the Battery Parameter eXchange (BPX) format in Pydantic."
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.9, <3.13"
license = { file = "LICENSE.txt" }
keywords = [
"bpx",
Expand Down

0 comments on commit 347a9d3

Please sign in to comment.