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: bump dependencies #148

Merged
merged 4 commits into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions deployment/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ services:

airflow-init:
<<: *airflow-common
image: apache/airflow:2.7.0-python3.10
image: apache/airflow:2.7.3-python3.10
command: version
environment:
<<: *airflow-common-environment
Expand All @@ -68,7 +68,7 @@ services:

airflow-webserver:
<<: *airflow-common
image: apache/airflow:2.7.0-python3.10
vmttn marked this conversation as resolved.
Show resolved Hide resolved
image: apache/airflow:2.7.3-python3.10
command: webserver
restart: always
healthcheck:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ services:

airflow-webserver:
<<: *airflow-common
image: apache/airflow:2.7.0-python3.10
image: apache/airflow:2.7.3-python3.10
command: webserver
restart: on-failure
ports:
Expand Down Expand Up @@ -95,7 +95,7 @@ services:

airflow-init:
<<: *airflow-common
image: apache/airflow:2.7.0-python3.10
image: apache/airflow:2.7.3-python3.10
entrypoint: /bin/bash -c
user: 0:0
command:
Expand Down
2 changes: 1 addition & 1 deletion pipeline/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ You can run dbt commands from your terminal.

```bash
# install dbt
pipx install --include-deps dbt-postgres==1.6.1
pipx install --include-deps dbt-postgres==1.7.1

# install extra dbt packages (e.g. dbt_utils)
dbt deps
Expand Down
2 changes: 1 addition & 1 deletion pipeline/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ RUN "${VIRTUAL_ENV}/bin/python" -m pip install --no-cache-dir -r requirements/ta
########
# This image is the runtime
########
FROM apache/airflow:2.7.0-python3.10
FROM apache/airflow:2.7.3-python3.10

ENV PYTHONUNBUFFERED 1
ENV PYTHONDONTWRITEBYTECODE 1
Expand Down
4 changes: 2 additions & 2 deletions pipeline/requirements/airflow/base.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
apache-airflow[amazon,postgres]~=2.7.0
psycopg2~=2.9.7
apache-airflow[amazon,postgres]==2.7.3
psycopg2==2.*
vmttn marked this conversation as resolved.
Show resolved Hide resolved
Loading