Skip to content

Commit

Permalink
Try including libpq5
Browse files Browse the repository at this point in the history
  • Loading branch information
Buried-In-Code committed Jun 5, 2024
1 parent 6d6b72d commit 53205c0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3.11-slim

RUN apt-get update && apt-get install -y tzdata
RUN apt-get update && apt-get install -y tzdata libpq5

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion freyr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

from freyr.console import CONSOLE

__version__ = "0.7.2"
__version__ = "0.7.3"


def get_cache() -> Path:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ requires-python = ">= 3.11"

[project.optional-dependencies]
postgres = [
"psycopg[binary] >= 3.1.19"
"psycopg >= 3.1.19"
]

[project.scripts]
Expand Down

0 comments on commit 53205c0

Please sign in to comment.