Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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