Skip to content

Commit

Permalink
Remove virtualenv
Browse files Browse the repository at this point in the history
  • Loading branch information
hrichards committed Aug 27, 2024
1 parent d5ecf02 commit 2fbc442
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/django.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pip install virtualenv
- name: Run Tests
run: |
make test
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ VENDOR_SENTINEL:=.sentinel
venv: $(VENV_ACTIVATE)

$(VENV_ACTIVATE): requirements*.txt
test -f $@ || virtualenv --python=python3.6 $(VENV_DIR)
test -f $@ || python -m venv $(VENV_DIR)
$(WITH_VENV) pip install -r requirements-setup.txt
$(WITH_VENV) pip install -e .
$(WITH_VENV) pip install -r requirements-dev.txt
Expand Down

0 comments on commit 2fbc442

Please sign in to comment.