Skip to content

Commit eee22f9

Browse files
committed
fix
1 parent 63ed1b7 commit eee22f9

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/deploy.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,17 @@ jobs:
1818
with:
1919
python-version: '3.12'
2020

21-
- name: Upgrading pip
22-
run: pip install --upgrade pip
23-
24-
- name: Installing dependencies
21+
- name: Check python and pip versions
2522
run: |
26-
pip install --upgrade pip setuptools wheel build
27-
pip install markupsafe==2.0.1 --no-cache-dir
23+
python --version
24+
python -m pip --version
25+
python -m pip list
26+
27+
- name: Upgrade build tools
28+
run: python -m pip install --upgrade pip setuptools wheel build setuptools_scm
2829

2930
- name: Installing package
30-
run: pip install -e .
31+
run: python -m pip install -e .
3132

3233
- name: Installing Jupyter book
3334
run: pip install -U jupyter-book

0 commit comments

Comments
 (0)