Skip to content

Commit e5a54ee

Browse files
Relax python 3.12 version constraint again
1 parent a8f49b7 commit e5a54ee

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.9", "3.10", "3.11", "3.12.12", "3.13"]
18+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1919
resolution: ["highest", "lowest-direct"]
2020
env:
2121
# Shared env variables for all the tests

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ test: generate install $(TESTDATA_FILE) ## Run unit tests
6666

6767
.PHONY: conformance
6868
conformance: $(BIN)/protovalidate-conformance generate install ## Run conformance tests
69-
uv run pip freeze
7069
$(BIN)/protovalidate-conformance $(CONFORMANCE_ARGS) uv run test/conformance/runner.py
7170

7271
.PHONY: lint
@@ -79,7 +78,7 @@ lint: install $(BIN)/buf ## Lint code
7978

8079
.PHONY: install
8180
install: ## Install dependencies
82-
uv sync --dev --python 3.12
81+
uv sync --dev
8382

8483
.PHONY: checkgenerate
8584
checkgenerate: generate

0 commit comments

Comments
 (0)