Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update service/workflow dependencies + base img #65

Merged
merged 2 commits into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
name: Set up Python
with:
python-version: "3.10"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
--health-retries 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
name: Set up Python
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: python -m pip install poetry==1.6.1
run: python -m pip install poetry==1.7.1
- name: Install dependencies
run: python -m poetry install
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion 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.12.01 AS base-deps
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2024.01.01 AS base-deps

SHELL ["/bin/bash", "-c"]

Expand Down
2 changes: 1 addition & 1 deletion container.requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
gunicorn==21.2.0
gevent==23.9.1
pysam>=0.22.0,<0.23.0
fasta-checksum-utils>=0.3.1,<0.4
fasta-checksum-utils>=0.4.0,<0.5
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.12.01 AS base-deps
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2024.01.01 AS base-deps

LABEL org.opencontainers.image.description="Local development image for Bento WES."
LABEL devcontainer.metadata='[{ \
Expand Down
648 changes: 290 additions & 358 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "bento_wes"
version = "0.12.5"
version = "0.12.6"
description = "Workflow execution service for the Bento platform."
authors = [
"David Lougheed <[email protected]>",
Expand All @@ -24,7 +24,7 @@ classifiers = [

[tool.poetry.dependencies]
python = "^3.10.0"
bento-lib = {extras = ["fastapi"], version = "^11.1.1"}
bento-lib = {extras = ["flask"], version = "^11.2.0"}
celery = {extras = ["redis"], version = "^5.2.7"}
requests = "^2.28.1"
Flask = "~2.2.5"
Expand Down