Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
kiyoon committed Jun 28, 2024
1 parent 674ba8d commit ceba9a5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
- name: Update version in Cargo.toml
run: |
pip3 install toml
python3 scripts/update_version_in_cargo_toml.py ${{ github.event.inputs.version_tag }}
- name: Build wheels
uses: PyO3/maturin-action@v1
Expand Down Expand Up @@ -145,10 +146,11 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
architecture: ${{ matrix.platform.target }}
- name: Update version in Cargo.toml
run: |
pip3 install toml
python3 scripts/update_version_in_cargo_toml.py ${{ github.event.inputs.version_tag }}
- name: Build wheels
uses: PyO3/maturin-action@v1
Expand All @@ -175,9 +177,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
- name: Update version in Cargo.toml
run: |
pip3 install toml
python3 scripts/update_version_in_cargo_toml.py ${{ github.event.inputs.version_tag }}
- name: Build wheels
uses: PyO3/maturin-action@v1
Expand All @@ -197,9 +200,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
- name: Update version in Cargo.toml
run: |
pip3 install toml
python3 scripts/update_version_in_cargo_toml.py ${{ github.event.inputs.version_tag }}
- name: Build sdist
uses: PyO3/maturin-action@v1
Expand Down
1 change: 0 additions & 1 deletion scripts/update_version_in_cargo_toml.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

import errno
import functools
import json
import os
import re
import subprocess
Expand Down

0 comments on commit ceba9a5

Please sign in to comment.