Skip to content

Commit b5d5144

Browse files
authored
Merge pull request #35 from eriknw/update6.2.5
Update to v6.2.5
2 parents 21ad9b8 + b127e10 commit b5d5144

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
python-version: ["3.8", "3.9", "3.10"]
2020
source: ["conda-forge"]
2121
# source: ["source"]
22-
graphblas-version: ["6.2.4"]
22+
graphblas-version: ["6.2.5"]
2323
steps:
2424
- name: Checkout
2525
uses: actions/checkout@v2

.github/workflows/wheels.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ jobs:
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v2
20+
- name: Set up Python
21+
uses: actions/setup-python@v2
22+
with:
23+
python-version: '3.8'
24+
- name: Upgrade pip
25+
run: |
26+
python -m pip install --upgrade pip
2027
- name: Build manylinux Python wheels
2128
uses: RalfG/[email protected]_x86_64
2229
with:
@@ -28,6 +35,5 @@ jobs:
2835
TWINE_USERNAME: __token__
2936
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
3037
run: |
31-
python -m pip install --upgrade pip
32-
pip install twine
38+
pip install twine
3339
twine upload dist/*-manylinux*.whl

0 commit comments

Comments
 (0)