-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from AMecea/bump-deps-python-3.8
Bump colibris deps to work with python 3.8
- Loading branch information
Showing
4 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
from colibris import template | ||
|
||
|
||
VERSION = '0.9.1' | ||
VERSION = '0.9.2' | ||
|
||
|
||
def setup(): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# Build with: | ||
# docker build -t colibris/python-base -f Dockerfile.python-base . | ||
|
||
FROM python:3.7-slim-stretch | ||
FROM python:3.8-slim-buster as builder | ||
|
||
# Make sure we have an up-to-date OS + python installation | ||
RUN apt-get update && apt-get -y upgrade && \ | ||
apt-get -y install build-essential git python-dev wait-for-it | ||
RUN apt update && apt -y upgrade && \ | ||
apt -y install build-essential python-dev wait-for-it | ||
|
||
# Install pipenv and lock down the version for the sake of reproducibility | ||
RUN pip install pipenv==2018.11.26 | ||
RUN pip install pipenv==2020.8.13 | ||
|
||
# Cleanup | ||
RUN apt-get clean autoclean && \ | ||
apt-get autoremove --yes && \ | ||
RUN apt clean autoclean && \ | ||
apt autoremove --yes && \ | ||
rm -rf /var/lib/{apt,dpkg,cache,log}/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
tox==3.13.2 | ||
pytest==5.0.0 | ||
pytest==6.0.1 | ||
pycodestyle==2.5.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters