Skip to content

Commit

Permalink
Merge pull request #49 from praekeltfoundation/build-v7-and-8
Browse files Browse the repository at this point in the history
Pin poetry
  • Loading branch information
erikh360 authored Sep 10, 2024
2 parents cbb522d + 28d7a43 commit cf01a34
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
GREP_TIMEOUT: 360
strategy:
matrix:
VERSION: [v7.0.4, v7.2.4]
VERSION: [v7.4.0]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,15 @@ RUN echo "Downloading RapidPro ${RAPIDPRO_VERSION} from https://github.com/$RAPI
tar -xf rapidpro.tar.gz --strip-components=1 && \
rm rapidpro.tar.gz

RUN pip install -U pip && pip install -U poetry
RUN pip install -U pip && pip install -U poetry==1.1.15

# Build Python virtualenv
RUN python3 -m venv /venv
ENV PATH="/venv/bin:$PATH"
ENV VIRTUAL_ENV="/venv"

# Install configuration related dependencies
RUN poetry remove codecov --dev
RUN /venv/bin/pip install --upgrade pip && poetry install --no-interaction --no-dev && poetry add \
"django-getenv==1.3.2" \
"django-cache-url==3.2.3" \
Expand Down

0 comments on commit cf01a34

Please sign in to comment.