Skip to content

Commit

Permalink
Merge pull request #1394 from 18F/python-update
Browse files Browse the repository at this point in the history
update django and python version to fix last release
  • Loading branch information
kfoley-18F committed Jan 5, 2022
2 parents 52b7f0d + 01f1e29 commit 88d503b
Show file tree
Hide file tree
Showing 4 changed files with 196 additions and 202 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
build:
docker:
# specify the version you desire here
- image: cimg/python:3.9.6-browsers
- image: cimg/python:3.10.1-browsers
environment:
- TZ=America/New_York
- PIPENV_VENV_IN_PROJECT=true
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.9.6
FROM python:3.10.1

RUN apt-get update && apt-get install -y postgresql-client

Expand Down
6 changes: 3 additions & 3 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ verify_ssl = true
name = "pypi"

[packages]
django = "~=3.2"
django = ">=3.2.10"
dj-database-url = "*"
gevent = "*"
gunicorn = "*"
Expand All @@ -15,7 +15,7 @@ bleach = "*"
newrelic = "*"
cfenv = "*"
cg-django-uaa = "*"
"psycopg2-binary" = ">=2.8,<2.9"
psycopg2-binary = ">=2.9.3"
markdown = "*"
django-webtest = "~=1.9"
plotly = "*"
Expand All @@ -34,4 +34,4 @@ nplusone = "*"
codecov = "*"

[requires]
python_version = "3.9.6"
python_version = "3.10.1"
Loading

0 comments on commit 88d503b

Please sign in to comment.