8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bec867 commit b922f40Copy full SHA for b922f40
.github/workflows/ci.yml
@@ -67,7 +67,6 @@ jobs:
67
- name: Build Packages
68
run: |
69
echo "Creating directory containing Python SDK Lambda Layer"
70
- pip install virtualenv
71
# This will also trigger "make dist" that creates the Python packages
72
make aws-lambda-layer
73
- name: Upload Python Packages
@@ -89,7 +88,6 @@ jobs:
89
88
python-version: 3.12
90
91
- run: |
92
93
make apidocs
94
cd docs/_build && zip -r gh-pages ./
95
Makefile
@@ -15,7 +15,7 @@ help:
15
@false
16
17
.venv:
18
- virtualenv -ppython3 $(VENV_PATH)
+ python -m venv $(VENV_PATH)
19
$(VENV_PATH)/bin/pip install tox
20
21
dist: .venv
0 commit comments