Skip to content

Commit 65388f6

Browse files
committed
Reduce diff of 'infra' files
1 parent ae8f9a5 commit 65388f6

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
env:
1212
COLUMNS: 150
13-
UV_PYTHON: "3.10"
13+
UV_PYTHON: 3.12
1414
UV_FROZEN: "1"
1515

1616
permissions:
@@ -23,6 +23,7 @@ jobs:
2323
strategy:
2424
fail-fast: false
2525
matrix:
26+
# Typecheck both Python 3.10 and 3.13. We've had issues due to not checking against both.
2627
python-version: ["3.10", "3.13"]
2728
env:
2829
UV_PYTHON: ${{ matrix.python-version }}
@@ -63,8 +64,6 @@ jobs:
6364

6465
docs:
6566
runs-on: ubuntu-latest
66-
env:
67-
UV_PYTHON: "3.11"
6867
steps:
6968
- uses: actions/checkout@v4
7069

.python-version

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

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ lint: ## Lint the code
3434
uv run ruff format --check
3535
uv run ruff check
3636

37-
PYRIGHT_PYTHON ?= 3.13
37+
PYRIGHT_PYTHON ?= 3.12
3838
.PHONY: typecheck-pyright
3939
typecheck-pyright:
4040
@# PYRIGHT_PYTHON_IGNORE_WARNINGS avoids the overhead of making a request to github on every invocation
@@ -65,7 +65,7 @@ test-all-python: ## Run tests on Python 3.10 to 3.13
6565
@uv run coverage combine
6666
@uv run coverage report
6767

68-
PYTEST_PYTHON ?= 3.13
68+
PYTEST_PYTHON ?= 3.12
6969
.PHONY: test-specific-python
7070
test-specific-python: ## Run tests and collect coverage data using a specific python, specified by PYTEST_PYTHON env var
7171
UV_PROJECT_ENVIRONMENT=.venv$(subst .,,$(PYTEST_PYTHON)) uv run --python $(PYTEST_PYTHON) --all-extras --all-packages coverage run -p -m pytest -n auto --dist=loadgroup --durations=20

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ quote-style = "single"
183183
"docs/**/*.py" = ["D"]
184184

185185
[tool.pyright]
186-
pythonVersion = "3.10"
186+
pythonVersion = "3.12"
187187
typeCheckingMode = "strict"
188188
reportMissingTypeStubs = false
189189
reportUnnecessaryIsInstance = false

0 commit comments

Comments
 (0)