Skip to content

Commit 2a161e3

Browse files
committed
chore: relax python patch pin
1 parent 669ee33 commit 2a161e3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.12.12
1+
3.12

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ improves the maintenance story.
1212
- Create and activate a virtual environment:
1313
- `python -m venv .venv`
1414
- `source .venv/bin/activate`
15-
- The reproducible interpreter target lives in `.python-version` (`3.12.12`).
15+
- The preferred interpreter target lives in `.python-version` (`3.12`).
1616
- Install local tooling with `make dev`.
1717
- For a frozen environment based on `uv.lock`, use `make repro`.
1818

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ SPHINX ?= $(PYTHON) -m sphinx
77
BUILD ?= $(PYTHON) -m build
88
TWINE ?= $(PYTHON) -m twine
99
UV ?= $(if $(wildcard .venv/bin/uv),.venv/bin/uv,uv)
10-
REPRO_PYTHON ?= $(shell cat .python-version 2>/dev/null || echo 3.12.12)
10+
REPRO_PYTHON ?= $(shell cat .python-version 2>/dev/null || echo 3.12)
1111
REPRO_EXTRAS ?= dev
1212

1313
.PHONY: help check-python check-uv dev install-dev repro lock \

0 commit comments

Comments
 (0)