Skip to content

Commit 0119e77

Browse files
committed
[ci/deps] Added setuptools to install dependencies step
1 parent 85a48e1 commit 0119e77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pyatlan-pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656

5757
- name: Install dependencies
5858
run: |
59-
python -m pip install --no-cache-dir --upgrade pip
59+
python -m pip install --no-cache-dir --upgrade pip setuptools
6060
if [ -f requirements.txt ]; then pip install --no-cache-dir -r requirements.txt; fi
6161
if [ -f requirements-dev.txt ]; then pip install --no-cache-dir -r requirements-dev.txt; fi
6262
@@ -102,7 +102,7 @@ jobs:
102102

103103
- name: Install dependencies
104104
run: |
105-
python -m pip install --no-cache-dir --upgrade pip
105+
python -m pip install --no-cache-dir --upgrade pip setuptools
106106
if [ -f requirements.txt ]; then pip install --no-cache-dir -r requirements.txt; fi
107107
if [ -f requirements-dev.txt ]; then pip install --no-cache-dir -r requirements-dev.txt; fi
108108

0 commit comments

Comments
 (0)