Skip to content

Commit

Permalink
chore: remove support for Python 3.7 (#974)
Browse files Browse the repository at this point in the history
Co-authored-by: Jacek Gruzewski <[email protected]>
Co-authored-by: Ricardo Amaro <[email protected]>
  • Loading branch information
3 people committed Mar 24, 2023
1 parent 0d611d9 commit f5fd147
Show file tree
Hide file tree
Showing 5 changed files with 195 additions and 268 deletions.
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:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.8, 3.9]

steps:
- name: Checkout kapitan recursively
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ repos:
rev: 22.10.0
hooks:
- id: black
language_version: python3.7
language_version: python3.8
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.32.2
hooks:
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.7-slim AS python-builder
FROM python:3.8-slim AS python-builder

ARG TARGETARCH

Expand Down Expand Up @@ -37,7 +37,7 @@ RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master
&& rm get_helm.sh

# Final image with virtualenv built in previous step
FROM python:3.7-slim
FROM python:3.8-slim

COPY --from=python-builder /opt/venv /opt/venv

Expand Down
Loading

0 comments on commit f5fd147

Please sign in to comment.