Skip to content

Commit af0fae2

Browse files
authored
Merge branch 'main' into main
2 parents 7f6c220 + 119e485 commit af0fae2

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/test-upload.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
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
@@ -69,7 +69,7 @@ jobs:
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
@@ -91,7 +91,7 @@ jobs:
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: |

.github/workflows/upload.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
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
@@ -51,7 +51,7 @@ jobs:
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
@@ -70,7 +70,7 @@ jobs:
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

svv/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
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

0 commit comments

Comments
 (0)