You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2022/10/13 18:24:06 UTC

[iceberg] branch master updated: Python: Bump pre-commit versions (#5943)

This is an automated email from the ASF dual-hosted git repository.

blue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/master by this push:
     new 046cdf1e38 Python: Bump pre-commit versions (#5943)
046cdf1e38 is described below

commit 046cdf1e386cc72c4a6665079d7c25e607ff24a8
Author: Fokko Driesprong <fo...@apache.org>
AuthorDate: Thu Oct 13 20:23:59 2022 +0200

    Python: Bump pre-commit versions (#5943)
---
 python/.pre-commit-config.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/python/.pre-commit-config.yaml b/python/.pre-commit-config.yaml
index 7fbabf315e..62b1881950 100644
--- a/python/.pre-commit-config.yaml
+++ b/python/.pre-commit-config.yaml
@@ -29,7 +29,7 @@ repos:
       - id: check-yaml
       - id: check-ast
   - repo: https://github.com/ambv/black
-    rev: 22.8.0
+    rev: 22.10.0
     hooks:
       - id: black
   - repo: https://github.com/pre-commit/mirrors-isort
@@ -38,7 +38,7 @@ repos:
       - id: isort
         args: [ --settings-path=python/pyproject.toml ]
   - repo: https://github.com/pre-commit/mirrors-mypy
-    rev: v0.971
+    rev: v0.982
     hooks:
       - id: mypy
         args: [ --install-types, --non-interactive, --config=python/pyproject.toml]
@@ -48,7 +48,7 @@ repos:
       - id: pycln
         args: [--config=python/pyproject.toml]
   - repo: https://github.com/asottile/pyupgrade
-    rev: v2.38.0
+    rev: v3.0.0
     hooks:
       - id: pyupgrade
         args: [--py38-plus]