Skip to content

Commit 7b7cd60

Browse files
authored
fix: pin default installed python to 3.10 (#601)
Update the installation process to set the default Python version to 3.10 instead of 3.9. There are some testing & docs packages we use that are causing issues. We can pin 3.10 until 3.9 support is removed. There is still a CI tests for 3.9
1 parent 8bdcb0d commit 7b7cd60

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ install-uv: ## Install latest version of
4444
.PHONY: install
4545
install: destroy clean ## Install the project, dependencies, and pre-commit
4646
@echo "${INFO} Starting fresh installation..."
47-
@uv python pin 3.9 >/dev/null 2>&1
47+
@uv python pin 3.10 >/dev/null 2>&1
4848
@uv venv >/dev/null 2>&1
4949
@uv sync --all-extras --dev
5050
@echo "${OK} Installation complete! 🎉"

0 commit comments

Comments
 (0)