Skip to content

Commit 560da21

Browse files
using pip install
1 parent a713150 commit 560da21

1 file changed

Lines changed: 7 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,10 @@ jobs:
4242
- name: Install dependencies
4343
run: |
4444
python -m pip install --upgrade pip
45-
python -m pip install uv
46-
uv upgrade
47-
uv install pylint ruff nose2 coverage junos-eznc
48-
uv install ntc_templates==1.4.1 textfsm==0.4.1
49-
uv install -r requirements.txt
50-
uv install .
45+
python -m pip install pylint black nose2 coverage junos-eznc
46+
python -m pip install ntc_templates==1.4.1 textfsm==0.4.1
47+
python -m pip install -r requirements.txt
48+
python -m pip install .
5149
5250
- name: Version Check
5351
# Confirms the runtime environment for each version in the matrix
@@ -91,11 +89,9 @@ jobs:
9189
- name: Install docs dependencies
9290
run: |
9391
python -m pip install --upgrade pip
94-
python -m pip install uv
95-
uv upgrade
96-
uv install sphinx
97-
uv install -r docs/docreq.txt
98-
uv install .
92+
python -m pip install sphinx
93+
python -m pip install -r docs/docreq.txt
94+
python -m pip install .
9995
10096
- name: Build Sphinx Docs
10197
run: sphinx-build -b html docs docs/_build/html -W

0 commit comments

Comments
 (0)