feature/improve-tag-organization-ux #8

Merged
pkartch merged 22 commits from feature/improve-tag-organization-ux into main 2026-01-17 06:13:39 +00:00
2 changed files with 10 additions and 16 deletions
Showing only changes of commit 32b6e9fcfd - Show all commits

View File

@@ -66,23 +66,16 @@ jobs:
with: with:
node-version: ${{ env.NODE_VERSION }} node-version: ${{ env.NODE_VERSION }}
- name: Setup Python dependencies - name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
cache: 'pip'
- name: Install Python dependencies
run: | run: |
# node:20-bookworm has Python 3.11 but not pip by default pip install -r packages/api/requirements.txt
python3 --version python -c "import recipe_scrapers; print('✓ recipe-scrapers installed successfully')"
# Install pip using get-pip.py if pip module not available
if ! python3 -m pip --version 2>/dev/null; then
echo "Installing pip..."
curl -sS https://bootstrap.pypa.io/get-pip.py | python3 - --user
export PATH="$HOME/.local/bin:$PATH"
fi
# Install recipe-scrapers
python3 -m pip install --user recipe-scrapers
# Verify installation
python3 -c "import recipe_scrapers; print('✓ recipe-scrapers installed successfully')"
- name: Install dependencies - name: Install dependencies
run: npm ci run: npm ci

View File

@@ -0,0 +1 @@
recipe-scrapers>=15.0.0