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 63ed1b7 commit eee22f9Copy full SHA for eee22f9
.github/workflows/deploy.yml
@@ -18,16 +18,17 @@ jobs:
18
with:
19
python-version: '3.12'
20
21
- - name: Upgrading pip
22
- run: pip install --upgrade pip
23
-
24
- - name: Installing dependencies
+ - name: Check python and pip versions
25
run: |
26
- pip install --upgrade pip setuptools wheel build
27
- pip install markupsafe==2.0.1 --no-cache-dir
+ python --version
+ python -m pip --version
+ python -m pip list
+
+ - name: Upgrade build tools
28
+ run: python -m pip install --upgrade pip setuptools wheel build setuptools_scm
29
30
- name: Installing package
- run: pip install -e .
31
+ run: python -m pip install -e .
32
33
- name: Installing Jupyter book
34
run: pip install -U jupyter-book
0 commit comments