From fa4c46c23dd2874e1540365ff3c9f5aa83144f05 Mon Sep 17 00:00:00 2001 From: Reinier Criel Date: Wed, 5 Nov 2025 15:47:41 -0800 Subject: [PATCH] Cleanup readme --- README.md | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/README.md b/README.md index 0f69d7f..acea710 100644 --- a/README.md +++ b/README.md @@ -165,22 +165,3 @@ This automatically configures your CI environment to use Aikido Safe Chain for a ``` After setup, all subsequent package manager commands in your CI pipeline will automatically be protected by Aikido Safe Chain's malware detection. - -### Python (pip/pip3) example - -```yaml -- name: Setup Python - uses: actions/setup-python@v5 - with: - python-version: '3.x' - -- name: Setup safe-chain - run: | - npm i -g @aikidosec/safe-chain - safe-chain setup-ci - -- name: Install Python dependencies - run: | - pip3 install --upgrade pip - pip3 install -r requirements.txt -```