Skip to content

Commit 070b8a3

Browse files
committed
more
1 parent c723507 commit 070b8a3

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci_integration.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ jobs:
4242
python -m pip install --upgrade pip
4343
pip install "tox < 4.0"
4444
45+
# Python no longer bundles setuptools starting in 3.12
46+
- name: Install python version specific dependencies
47+
if: matrix.python-version == '3.12'
48+
run: |
49+
pip install setuptools
50+
4551
- name: Configure AWS Credentials for Tests
4652
uses: aws-actions/configure-aws-credentials@v4
4753
with:
@@ -71,7 +77,7 @@ jobs:
7177
- name: Install dependencies
7278
run: |
7379
python -m pip install --upgrade pip
74-
pip install "tox < 4.0"
80+
pip install "tox < 4.0"
7581
7682
- name: Run coverage
7783
env:

0 commit comments

Comments
 (0)