From a6752bf8d0629ced4a74a53a5e8f9b5bbd2e5e9e Mon Sep 17 00:00:00 2001 From: Henry Cooksley Date: Fri, 15 Sep 2023 15:50:00 +0100 Subject: [PATCH] Set python_full_version in Pipfile --- .circleci/config.yml | 4 ++-- Dockerfile | 2 +- Pipfile | 2 +- Pipfile.lock | 4 ++-- circleci.Dockerfile | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ea9edeb5..9ef7d49d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,7 @@ version: 2.1 jobs: tests: docker: - - image: circleci/python:3.8 + - image: cimg/python:3.8.17 - image: circleci/postgres:12 environment: POSTGRES_USER: postgres @@ -58,7 +58,7 @@ jobs: linting: docker: - - image: circleci/python:3.8 + - image: cimg/python:3.8.17 steps: - checkout diff --git a/Dockerfile b/Dockerfile index 0bd10ed1..b44aae91 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.8.18-slim +FROM python:3.8.17-slim WORKDIR /app diff --git a/Pipfile b/Pipfile index 63f422bf..37a15b4f 100644 --- a/Pipfile +++ b/Pipfile @@ -38,4 +38,4 @@ psycopg2-binary = "~=2.9.3" setuptools = "~=65.5.1" [requires] -python_version = "3.8" +python_full_version = "3.8.17" diff --git a/Pipfile.lock b/Pipfile.lock index 462d30b4..48f7584d 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,11 +1,11 @@ { "_meta": { "hash": { - "sha256": "f46f1dc9088613d0381475928c39c8ba93290c3f21776e490eccb32150274052" + "sha256": "c6ee966c8c9797b601eb835c8d1d9b733b5e76107e873104f34708af0e3b3e67" }, "pipfile-spec": 6, "requires": { - "python_version": "3.8" + "python_full_version": "3.8.17" }, "sources": [ { diff --git a/circleci.Dockerfile b/circleci.Dockerfile index ee82ecd2..2016c7aa 100644 --- a/circleci.Dockerfile +++ b/circleci.Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.8-slim-bullseye +FROM python:3.8.17-slim-bullseye ENV DOCKERIZE_VERSION v0.6.1 RUN apt-get update --fix-missing RUN apt-get install libpq-dev gcc wget -y