Skip to content

Commit

Permalink
Merge pull request #48 from bento-platform/chore/update-deps
Browse files Browse the repository at this point in the history
chore: update Docker base images + Python dependencies
  • Loading branch information
davidlougheed authored Oct 25, 2023
2 parents d3188ee + 793a676 commit 2087c0f
Show file tree
Hide file tree
Showing 7 changed files with 614 additions and 590 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,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 @@ -18,7 +18,7 @@ jobs:

steps:

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true

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.08.16
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2023.10.20

# Run as root in the Dockerfile until we drop down to the service user in the entrypoint
USER 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.08.16
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2023.10.20

LABEL org.opencontainers.image.description="Local development image the Bento aggregation service."
LABEL devcontainer.metadata='[{ \
Expand Down
1,174 changes: 599 additions & 575 deletions poetry.lock

Large diffs are not rendered by default.

18 changes: 9 additions & 9 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_aggregation_service"
version = "0.19.1"
version = "0.19.2"
description = "Search result aggregation service for the Bento platform."
authors = ["David Lougheed <[email protected]>"]
readme = "README.md"
Expand All @@ -19,17 +19,17 @@ classifiers = [

[tool.poetry.dependencies]
python = "^3.10.0"
bento-lib = {extras = ["fastapi"], version = "^7.2.2"}
fastapi = "^0.101.1"
bento-lib = {extras = ["fastapi"], version = "^8.1.0"}
fastapi = "^0.103.0"
pydantic-settings = "^2.0.3"
aiohttp = "^3.8.5"
pydantic = "^2.1.1"
aiohttp = "^3.8.6"
pydantic = "^2.4.2"

[tool.poetry.group.dev.dependencies]
coverage = "^7.2.7"
debugpy = "^1.6.7"
coverage = "^7.3.2"
debugpy = "^1.8.0"
flake8 = "^6.0.0"
pytest = "^7.4.0"
pytest = "^7.4.3"
pytest-cov = "^4.1.0"
tox = "^4.6.4"
tox = "^4.11.3"
httpx = "^0.24.1"

0 comments on commit 2087c0f

Please sign in to comment.