diff --git a/.github/workflows/pre-commit-hook-run.yml b/.github/workflows/pre-commit-hook-run.yml index e0426b92..a93db8ca 100644 --- a/.github/workflows/pre-commit-hook-run.yml +++ b/.github/workflows/pre-commit-hook-run.yml @@ -20,11 +20,11 @@ jobs: node-version: '12' - name: Create virtual environment and install dependencies run: | - sudo apt-get install -y python3-setuptools python3 -m venv venv source venv/bin/activate - pip install "cython<3.0.0" wheel - pip install "PyYAML==5.4.1" --no-build-isolation + python3 -m pip install setuptools + python3 -m pip install "cython<3.0.0" wheel + python3 -m pip install "PyYAML==5.4.1" --no-build-isolation make dev-install && rm -rf src - name: Make a dummy change to README.md run: |