Skip to content

Commit

Permalink
Try to use venv instead of break-system-packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Lekcyjna committed Oct 14, 2023
1 parent 283724f commit 662322c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ jobs:

- name: Install dependencies
run: |
python3 -m pip install --break-system-packages --upgrade pip
python3 -m pip install --break-system-packages -r requirements-dev.txt
python3 -m venv venv
source venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements-dev.txt
- name: Generate Verilog
run: PYTHONHASHSEED=0 ./scripts/gen_verilog.py --verbose --config full
Expand Down

0 comments on commit 662322c

Please sign in to comment.