File tree 3 files changed +18
-6
lines changed
3 files changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,13 @@ jobs:
12
12
steps :
13
13
- uses : actions/checkout@v3
14
14
15
- - name : Set up Python 3.9
15
+ # https://devcenter.heroku.com/articles/getting-started-with-python
16
+ # Match version to Heroku app
17
+ # Keep in sync with Dockerfile and Pipfile
18
+ - name : Set up Python 3.10
16
19
uses : actions/setup-python@v4
17
20
with :
18
- python-version : 3.9
21
+ python-version : 3.10
19
22
20
23
- name : Install pipenv
21
24
run : |
@@ -69,10 +72,13 @@ jobs:
69
72
- name : Check out repository code
70
73
uses : actions/checkout@v3
71
74
72
- - name : Set up Python 3.9
75
+ # https://devcenter.heroku.com/articles/getting-started-with-python
76
+ # Match version to Heroku app
77
+ # Keep in sync with Dockerfile and Pipfile
78
+ - name : Set up Python 3.10
73
79
uses : actions/setup-python@v4
74
80
with :
75
- python-version : 3.9
81
+ python-version : 3.10
76
82
77
83
- name : Install pipenv
78
84
run : |
Original file line number Diff line number Diff line change 1
1
# https://docs.docker.com/engine/reference/builder/
2
2
3
3
# https://hub.docker.com/_/python/
4
- FROM python:3.9-slim
4
+ # https://devcenter.heroku.com/articles/getting-started-with-python
5
+ # Match version to Heroku app
6
+ # Keep in sync with .github/workflows/main.yml and Pipfile
7
+ FROM python:3.10-slim
5
8
6
9
# Configure apt not to prompt during docker build
7
10
ARG DEBIAN_FRONTEND=noninteractive
Original file line number Diff line number Diff line change @@ -24,4 +24,7 @@ psycopg2 = "*"
24
24
whitenoise = " *"
25
25
26
26
[requires ]
27
- python_version = " 3.9"
27
+ # https://devcenter.heroku.com/articles/getting-started-with-python
28
+ # Match version to Heroku app
29
+ # Keep in sync with .github/workflows/main.yml and Dockerfile
30
+ python_version = " 3.10"
You can’t perform that action at this time.
0 commit comments