From 5e74898e5e60a03664f6ec58a11bb4b713d187af Mon Sep 17 00:00:00 2001
From: Yngve Levinsen <yngve.levinsen@ess.eu>
Date: Wed, 3 Feb 2021 13:38:40 +0100
Subject: [PATCH] python 3.9 default for testing update pre-commit hooks

---
 .gitlab-ci.yml          | 2 +-
 .pre-commit-config.yaml | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1543491..7e45adc 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,5 +1,5 @@
 #image: registry.esss.lu.se/ics-docker/miniconda
-image: python:3.8-slim
+image: python:3.9-slim
 .pip_install_default: &pip_install_default
     - apt update
     - apt install git -y
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index ac622c8..66441e3 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -1,6 +1,6 @@
 repos:
   - repo: https://github.com/pre-commit/pre-commit-hooks
-    rev: v3.1.0
+    rev: v3.4.0
     hooks:
     - id: end-of-file-fixer
     - id: trailing-whitespace
@@ -15,6 +15,6 @@ repos:
       - id: flake8
         args: ['--max-line-length=140', '--ignore=E203,E402']
   - repo: https://github.com/pre-commit/mirrors-mypy
-    rev: v0.790
+    rev: v0.800
     hooks:
     -   id: mypy
-- 
GitLab