We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 028a090 commit cfc29c6Copy full SHA for cfc29c6
.circleci/config.yml
@@ -36,6 +36,7 @@ jobs:
36
- run:
37
name: install dependencies
38
command: |
39
+ gem install bundler:2.4.22
40
bundle install --path vendor/bundle
41
sudo rm /etc/apt/sources.list
42
echo "deb http://ftp.us.debian.org/debian/ bookworm main contrib non-free" | sudo tee -a /etc/apt/sources.list
@@ -44,6 +45,8 @@ jobs:
44
45
echo '# Package: *\nPin: origin "archive.debian.org"\nPin-Priority: 500' | sudo tee -a /etc/apt/preferences.d/10-archive-pin
46
sudo apt-get update
47
sudo apt install python3-pip
48
+ python3 -m venv .venv
49
+ source .venv/bin/activate
50
sudo pip install PyYAML==5.4.1
51
sudo pip install python-frontmatter==0.5.0
52
sudo pip install pathlib
0 commit comments