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 c723507 commit 070b8a3Copy full SHA for 070b8a3
.github/workflows/ci_integration.yml
@@ -42,6 +42,12 @@ jobs:
42
python -m pip install --upgrade pip
43
pip install "tox < 4.0"
44
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
+
51
- name: Configure AWS Credentials for Tests
52
uses: aws-actions/configure-aws-credentials@v4
53
with:
@@ -71,7 +77,7 @@ jobs:
71
77
- name: Install dependencies
72
78
run: |
73
79
74
- pip install "tox < 4.0"
80
+ pip install "tox < 4.0"
75
81
76
82
- name: Run coverage
83
env:
0 commit comments