1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-10 15:47:32 +00:00

Merge branch 'jk2K-develop-patch-45914' into 'develop'

upgrade python to 3.7

Closes 

See merge request 
This commit is contained in:
Bram Wiepjes 2021-02-18 12:25:31 +00:00
commit 0a06f9d69c
4 changed files with 6 additions and 6 deletions
.gitlab-ci.yml
backend
plugin-boilerplate/{{ cookiecutter.project_slug }}

View file

@ -32,7 +32,7 @@ web-frontend-test:
backend-flake8:
stage: lint
image: python:3.6
image: python:3.7
script:
- cd backend
- make install-dependencies
@ -41,7 +41,7 @@ backend-flake8:
backend-pytest:
stage: test
image: python:3.6
image: python:3.7
services:
- name: postgres:11.3
alias: db
@ -60,7 +60,7 @@ backend-pytest:
backend-setup:
stage: build
image: python:3.6
image: python:3.7
script:
- pip install -e ./backend
- python -c 'import baserow'

View file

@ -1,4 +1,4 @@
FROM python:3.6
FROM python:3.7
ADD . /backend
RUN mkdir -p /media

View file

@ -1,4 +1,4 @@
FROM python:3.6
FROM python:3.7
ADD . /backend

View file

@ -1,4 +1,4 @@
FROM python:3.6
FROM python:3.7
ADD ./baserow /baserow
ADD ./{{ cookiecutter.project_slug }} /{{ cookiecutter.project_slug }}