Skip to content

Commit 6da9f48

Browse files
committed
3.11
1 parent 03cb17f commit 6da9f48

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.github/workflows/ubuntu-packages-and-docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
postgresql-server-dev-12 \
106106
postgresql-server-dev-11 \
107107
lsb-release \
108-
python3.10 \
108+
python3.11 \
109109
python3-pip \
110110
libpython3.10-dev \
111111
python3.10-dev \

.github/workflows/ubuntu-postgresml-python-package.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,19 @@ jobs:
3333
runs-on: ${{ matrix.os }}
3434
steps:
3535
- 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
3649
- name: Build and release package
3750
env:
3851
AWS_ACCESS_KEY_ID: ${{ vars.AWS_ACCESS_KEY_ID }}

0 commit comments

Comments
 (0)