Skip to content

Commit b922f40

Browse files
authored
Use pythons venv instead of virtualenv to create virtual envs (#3077)
1 parent 4bec867 commit b922f40

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ jobs:
6767
- name: Build Packages
6868
run: |
6969
echo "Creating directory containing Python SDK Lambda Layer"
70-
pip install virtualenv
7170
# This will also trigger "make dist" that creates the Python packages
7271
make aws-lambda-layer
7372
- name: Upload Python Packages
@@ -89,7 +88,6 @@ jobs:
8988
python-version: 3.12
9089

9190
- run: |
92-
pip install virtualenv
9391
make apidocs
9492
cd docs/_build && zip -r gh-pages ./
9593

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ help:
1515
@false
1616

1717
.venv:
18-
virtualenv -ppython3 $(VENV_PATH)
18+
python -m venv $(VENV_PATH)
1919
$(VENV_PATH)/bin/pip install tox
2020

2121
dist: .venv

0 commit comments

Comments
 (0)