Skip to content

Commit

Permalink
Merge pull request #206 from uktrade/LTD-4207_Upgrade_lite_hmrc_to_py…
Browse files Browse the repository at this point in the history
…thon_3_8

Upgrade lite-hmrc to python 3.8
  • Loading branch information
hnryjmes authored Sep 18, 2023
2 parents 222cb71 + 1ca6518 commit ea2c621
Show file tree
Hide file tree
Showing 5 changed files with 154 additions and 259 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2.1
jobs:
tests:
docker:
- image: circleci/python:3.7
- image: cimg/python:3.8.17
- image: circleci/postgres:12
environment:
POSTGRES_USER: postgres
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:

linting:
docker:
- image: circleci/python:3.7
- image: cimg/python:3.8.17
steps:
- checkout

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7-slim
FROM python:3.8.17-slim

WORKDIR /app

Expand Down
7 changes: 4 additions & 3 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ bandit = "==1.6.3"
black = "==22.3.0"
coverage = "~=5.0"
parameterized = "==0.7.0"
prospector = "==1.1.6.2" # Our project only works with version 1.1.6.2
isort = "==5.10.1"
prospector = "~=1.2.0"
isort = "~=4.3.21"
django-extensions = "*"
ipdb = "*"
pytest = "*"
Expand Down Expand Up @@ -38,4 +38,5 @@ psycopg2-binary = "~=2.9.3"
setuptools = "~=65.5.1"

[requires]
python_version = "3.7"
python_version = "3.8"
python_full_version = "3.8.17"
Loading

0 comments on commit ea2c621

Please sign in to comment.