Remove venv

This commit is contained in:
Alex Root Junior 2023-01-08 22:01:14 +02:00
parent b191122db7
commit bd59863c21
No known key found for this signature in database
GPG key ID: 074C1D455EBEA4AC

View file

@ -77,10 +77,9 @@ jobs:
- name: Install project dependencies
if: steps.cached-pip-dependencies.outputs.cache-hit != 'true'
run: |
python -m venv .venv
extras="dev,test,redis,proxy,i18n"
[[ "$IS_PYPY" == "false" ]] && extras="$extras,fast"
.venv/bin/pip install -e .[$extras]
pip install -e .[$extras]
- name: Lint code
if: "env.IS_PYPY == 'false'"