We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf88a5b commit c866c57Copy full SHA for c866c57
.circleci/config.yml
@@ -9,7 +9,7 @@ parameters:
9
10
defaults: &defaults
11
docker:
12
- - image: circleci/python:2.7-stretch-browsers
+ - image: cimg/python:3.11.0-browsers
13
14
test_defaults: &test_defaults
15
@@ -19,8 +19,10 @@ install_dependency: &install_dependency
19
name: Installation of build and deployment dependencies.
20
command: |
21
sudo apt install jq
22
- sudo pip install awscli --upgrade
23
- sudo pip install docker-compose
+ sudo apt update
+ sudo apt install python3-pip
24
+ sudo pip3 install awscli --upgrade
25
+ sudo pip3 install docker-compose
26
27
install_test_dependency: &install_test_dependency
28
0 commit comments