Skip to content

Commit cac3c7d

Browse files
committed
CI: use python3
Python 2 is no longer available: W: https://download.docker.com/linux/ubuntu/dists/jammy/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details. E: Package 'python' has no installation candidate
1 parent 3d3f790 commit cac3c7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ jobs:
66
- image: cimg/go:1.19.5
77
steps:
88
- checkout
9-
- run: sudo apt-get update && sudo apt-get -y -qq install python pip
10-
- run: pip install pre-commit
9+
- run: sudo apt-get update && sudo apt-get -y -qq install python3 python3-pip
10+
- run: pip3 install pre-commit
1111
- run: SKIP=no-commit-to-branch pre-commit run -a
1212
- run: go test ./...
1313
- run: make test

0 commit comments

Comments
 (0)