From 852c873a2a5753be9c7f044b86c5181cc07d94dd Mon Sep 17 00:00:00 2001
From: Fredrik Jonsson <frjo@xdeb.org>
Date: Tue, 25 Feb 2020 18:47:31 +0100
Subject: [PATCH] Use same postgres version as Heroku.

---
 .circleci/config.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index 4a6067294..8e661f3cb 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -19,7 +19,7 @@ executors:
           PGUSER: root
           DJANGO_SETTINGS_MODULE: hypha.settings.test
           SEND_MESSAGES: false
-      - image: circleci/postgres:10.10
+      - image: circleci/postgres:10.11
         environment:
           POSTGRES_USER: root
           POSTGRES_DB: hypha
@@ -118,12 +118,12 @@ jobs:
             codecov
 
   lint:
-    executor: python 
+    executor: python
     working_directory: ~/repo
     steps:
       - checkout
       - attach_workspace:
-          at: ~/repo 
+          at: ~/repo
       - run:
           name: run tests
           command: |
@@ -133,13 +133,13 @@ jobs:
 
 workflows:
     version: 2.1
-    process: 
+    process:
       jobs:
-        - build-fe 
+        - build-fe
         - build-be
         - test:
             requires:
-            - build-fe 
+            - build-fe
             - build-be
         - lint:
             requires:
-- 
GitLab