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 #314 See merge request bramw/baserow!176
This commit is contained in:
commit
0a06f9d69c
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