mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-10 23:50:12 +00:00
upgrade python to 3.7
This commit is contained in:
parent
78ef2c2942
commit
d3baffa49c
4 changed files with 6 additions and 6 deletions
|
@ -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'
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM python:3.6
|
||||
FROM python:3.7
|
||||
|
||||
ADD . /backend
|
||||
RUN mkdir -p /media
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM python:3.6
|
||||
FROM python:3.7
|
||||
|
||||
ADD . /backend
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM python:3.6
|
||||
FROM python:3.7
|
||||
|
||||
ADD ./baserow /baserow
|
||||
ADD ./{{ cookiecutter.project_slug }} /{{ cookiecutter.project_slug }}
|
||||
|
|
Loading…
Add table
Reference in a new issue