File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ jobs:
105
105
postgresql-server-dev-12 \
106
106
postgresql-server-dev-11 \
107
107
lsb-release \
108
- python3.10 \
108
+ python3.11 \
109
109
python3-pip \
110
110
libpython3.10-dev \
111
111
python3.10-dev \
Original file line number Diff line number Diff line change 33
33
runs-on : ${{ matrix.os }}
34
34
steps :
35
35
- uses : actions/checkout@v3
36
+ - name : Install dependencies
37
+ env :
38
+ DEBIAN_FRONTEND : noninteractive
39
+ TZ : Etc/UTC
40
+ run : |
41
+ sudo add-apt-repository ppa:deadsnakes/ppa --yes
42
+ sudo apt update
43
+
44
+ sudo apt-get update && sudo apt-fast install -y \
45
+ python3.11 \
46
+ python3-pip \
47
+ libpython3.11-dev \
48
+ python3.11-dev
36
49
- name : Build and release package
37
50
env :
38
51
AWS_ACCESS_KEY_ID : ${{ vars.AWS_ACCESS_KEY_ID }}
You can’t perform that action at this time.
0 commit comments