Skip to content

Commit

Permalink
Stop buffering python io messages
Browse files Browse the repository at this point in the history
  • Loading branch information
gmrukwa committed Dec 10, 2019
1 parent aec664c commit 4039548
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
env:
MAJOR: ${{ 2 }}
MINOR: ${{ 3 }}
FIXUP: ${{ 2 }}
FIXUP: ${{ 3 }}
PACKAGE_INIT_FILE: ${{ 'divik/__init__.py' }}
DOCKER_REPO: ${{ 'gmrukwa/divik' }}
IS_ALPHA: ${{ github.event_name == 'pull_request' }}
Expand Down
2 changes: 1 addition & 1 deletion divik/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '2.3.2'
__version__ = '2.3.3'

from ._seeding import seeded
from ._sklearn import DiviK
Expand Down
2 changes: 2 additions & 0 deletions docker/deploy.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM spectreteam/python_msi:v5.0.0

ENV PYTHONUNBUFFERED TRUE

COPY requirements.txt /app/requirements.txt

WORKDIR /app
Expand Down
2 changes: 2 additions & 0 deletions docker/development.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM spectreteam/python_msi:v5.0.0

ENV PYTHONUNBUFFERED TRUE

COPY requirements.txt /requirements.txt

RUN pip install --no-cache-dir -r /requirements.txt &&\
Expand Down
2 changes: 2 additions & 0 deletions docker/unittest.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM spectreteam/python_msi:v5.0.0

ENV PYTHONUNBUFFERED TRUE

COPY requirements.txt /app/requirements.txt

WORKDIR /app
Expand Down

0 comments on commit 4039548

Please sign in to comment.