diff --git a/.github/workflows/index-latest.yml b/.github/workflows/index-latest.yml index c1d5556..678d1b3 100644 --- a/.github/workflows/index-latest.yml +++ b/.github/workflows/index-latest.yml @@ -21,15 +21,13 @@ jobs: with: profile: minimal toolchain: stable - - name: Set up Python 3.9 + - name: Set up Python 3.10 uses: actions/setup-python@v2 with: - python-version: 3.9 + python-version: 3.10 - name: Install dependencies run: | - python -m pip install --upgrade pip poetry - poetry config virtualenvs.create false - poetry install --no-dev --no-interaction --no-ansi + pip install -r requirements.txt - name: Add rust analyzer run: rustup component add rust-analyzer - name: Run indexing