Skip to content

Commit

Permalink
Merge pull request #69 from bento-platform/chore/update
Browse files Browse the repository at this point in the history
chore: update base images, dependencies, and CI actions
  • Loading branch information
davidlougheed authored Oct 17, 2023
2 parents 53b2477 + d9c405d commit 3390508
Show file tree
Hide file tree
Showing 7 changed files with 643 additions and 637 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run Bento build action
uses: bento-platform/[email protected].0
uses: bento-platform/[email protected].1
with:
registry: ghcr.io
registry-username: ${{ github.actor }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
name: Set up Python
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
matrix:
python-version: [ "3.10", "3.11" ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
name: Set up Python
with:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2023.07.17
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2023.09.08

RUN apt-get update -y && \
apt-get install gcc libffi-dev -y && \
Expand All @@ -10,7 +10,7 @@ RUN mkdir /wes
# Install dependencies
COPY pyproject.toml .
COPY poetry.lock .
RUN pip install --no-cache-dir gunicorn==20.1.0 && \
RUN pip install --no-cache-dir gunicorn==21.2.0 && \
poetry config virtualenvs.create false && \
poetry install --without dev --no-root

Expand Down
2 changes: 1 addition & 1 deletion dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2023.07.17
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2023.09.08

LABEL org.opencontainers.image.description="Local development image for Bento DRS."
LABEL devcontainer.metadata='[{ \
Expand Down
1,264 changes: 635 additions & 629 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "chord-drs"
version = "0.12.6"
version = "0.13.0"
description = "An implementation of a data repository system (as per GA4GH's specs) for the Bento platform."
authors = ["David Lougheed <[email protected]>"]
license = "LGPL-3.0"
Expand Down

0 comments on commit 3390508

Please sign in to comment.