Skip to content

Commit

Permalink
Upgrade python and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessandro De Maria committed Jan 17, 2024
1 parent ce3715c commit ae550bf
Show file tree
Hide file tree
Showing 4 changed files with 390 additions and 343 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.10'
- uses: psf/black@main

test:
Expand All @@ -51,7 +51,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9]
python-version: [3.10, 3.11]

steps:
- name: Checkout kapitan recursively
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the virtualenv for Kapitan
FROM python:3.8-slim AS python-builder
FROM python:3.11-slim AS python-builder
ARG TARGETARCH
ENV TARGETARCH=${TARGETARCH:-amd64}

Expand All @@ -11,7 +11,7 @@ RUN apt-get update \
curl \
build-essential

ENV POETRY_VERSION=1.4.0
ENV POETRY_VERSION=1.7.1
ENV VIRTUAL_ENV=/opt/venv
ENV PATH="$VIRTUAL_ENV/bin:/usr/local/go/bin:${PATH}"
RUN python -m venv $VIRTUAL_ENV \
Expand Down
Loading

0 comments on commit ae550bf

Please sign in to comment.