File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 2222
2323 - name : Install build dependencies
2424 run : |
25- pip install --upgrade pip && pip install build
25+ python -m pip install --upgrade pip && pip install build
2626
2727 - name : Build base wheel (pure-Python svv)
2828 run : python -m build --wheel --outdir dist
6969 uses : actions/checkout@v4
7070
7171 - name : Install cibuildwheel
72- run : pip install --upgrade pip && pip install cibuildwheel
72+ run : python -m pip install --upgrade pip && pip install cibuildwheel
7373
7474 - name : Build wheels (svv-accelerated)
7575 run : cibuildwheel --output-dir dist
9191 path : dist
9292 merge-multiple : true
9393 - name : Install twine
94- run : pip install --upgrade pip && pip install twine
94+ run : python -m pip install --upgrade pip && pip install twine
9595 - name : Validate TestPyPI token (svv)
9696 if : ${{ hashFiles('dist/svv-*-py3-none-any.whl') != '' || hashFiles('dist/svv-*.tar.gz') != '' }}
9797 run : |
Original file line number Diff line number Diff line change 2222
2323 - name : Install build dependencies
2424 run : |
25- pip install --upgrade pip && pip install build
25+ python -m pip install --upgrade pip && pip install build
2626
2727 - name : Build base wheel (pure-Python svv)
2828 run : python -m build --wheel --outdir dist
5151 uses : actions/checkout@v4
5252
5353 - name : Install cibuildwheel
54- run : pip install --upgrade pip && pip install cibuildwheel
54+ run : python -m pip install --upgrade pip && pip install cibuildwheel
5555
5656 - name : Build wheels (svv-accelerated)
5757 run : cibuildwheel --output-dir dist
7070
7171 - name : Install build dependencies
7272 run : |
73- pip install --upgrade pip && pip install build
73+ python -m pip install --upgrade pip && pip install build
7474
7575 - name : Build sdist
7676 run : python -m build --sdist
Original file line number Diff line number Diff line change 11__version__ = "0.0.36"
22
3+
34# If the optional companion package with compiled accelerators is installed
45# (svv-accelerated), prefer those modules transparently by aliasing them into
56# svv.* import paths. This lets users simply `pip install svv[accel]` to get
You can’t perform that action at this time.
0 commit comments