Skip to content

Commit

Permalink
fix(#176): use python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
andrablaj committed Oct 10, 2024
1 parent 5a8eaaa commit ae45a7b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ tests/.user.yml
dbt-env/*
.user.yml
dbt-env/*
.idea
.DS_Store
4 changes: 2 additions & 2 deletions tests/dbt/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM python:3 AS testing
FROM python:3.12 AS testing

RUN pip install flake8 \
&& flake8 dbt-run.py

FROM python:3 AS release
FROM python:3.12 AS release

RUN pip install --upgrade cffi \
&& pip install cryptography~=3.4 \
Expand Down

0 comments on commit ae45a7b

Please sign in to comment.