Skip to content

Commit

Permalink
Use pythons venv instead of virtualenv to create virtual envs (getsen…
Browse files Browse the repository at this point in the history
  • Loading branch information
antonpirker authored May 16, 2024
1 parent 4bec867 commit b922f40
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ jobs:
- name: Build Packages
run: |
echo "Creating directory containing Python SDK Lambda Layer"
pip install virtualenv
# This will also trigger "make dist" that creates the Python packages
make aws-lambda-layer
- name: Upload Python Packages
Expand All @@ -89,7 +88,6 @@ jobs:
python-version: 3.12

- run: |
pip install virtualenv
make apidocs
cd docs/_build && zip -r gh-pages ./
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ help:
@false

.venv:
virtualenv -ppython3 $(VENV_PATH)
python -m venv $(VENV_PATH)
$(VENV_PATH)/bin/pip install tox

dist: .venv
Expand Down

0 comments on commit b922f40

Please sign in to comment.