diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13d8b885f1..38d960885e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -89,7 +88,6 @@ jobs: python-version: 3.12 - run: | - pip install virtualenv make apidocs cd docs/_build && zip -r gh-pages ./ diff --git a/Makefile b/Makefile index 29f511e502..fdbfd3c73d 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ help: @false .venv: - virtualenv -ppython3 $(VENV_PATH) + python -m venv $(VENV_PATH) $(VENV_PATH)/bin/pip install tox dist: .venv