From b2b46039ac90fdbbdf252a14eb590f253236d85a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C5=A1a=20Tomi=C4=87?= Date: Thu, 30 Nov 2023 10:14:05 +0000 Subject: [PATCH] chore: Update the Python to 3.11 and pre-commit config --- WORKSPACE.bazel | 6 +++--- rustfmt.toml | 2 -- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/WORKSPACE.bazel b/WORKSPACE.bazel index 62884f45..0e45f919 100644 --- a/WORKSPACE.bazel +++ b/WORKSPACE.bazel @@ -35,11 +35,11 @@ load("@rules_python//python/pip_install:pip_repository.bzl", "package_annotation py_repositories() python_register_toolchains( - name = "python3_8", - python_version = "3.8.16", + name = "python3_11", + python_version = "3.11.1", ) -load("@python3_8//:defs.bzl", "interpreter") +load("@python3_11//:defs.bzl", "interpreter") load("@rules_python//python:pip.bzl", "pip_parse") pip_parse( diff --git a/rustfmt.toml b/rustfmt.toml index 760c555c..01b441c0 100644 --- a/rustfmt.toml +++ b/rustfmt.toml @@ -1,4 +1,2 @@ -indent_style = "Block" max_width = 120 -wrap_comments = true edition = "2021"