Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/action-common-python-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ runs:
name: Maturin - Build
uses: messense/maturin-action@v1
with:
manylinux: '2_34'
manylinux: '2_28'
command: ${{ inputs.maturin-command }}
target: ${{ inputs.maturin-target }}
container: ${{ inputs.maturin-container }}
Expand All @@ -54,7 +54,7 @@ runs:
name: Maturin - Source Distribution
uses: messense/maturin-action@v1
with:
manylinux: '2_34'
manylinux: '2_28'
command: ${{ inputs.maturin-command }}
target: ${{ inputs.maturin-target }}
container: ${{ inputs.maturin-container }}
Expand All @@ -65,7 +65,7 @@ runs:
name: Install wheel
shell: bash
run: |
pip install ${{ inputs.package-name }} --find-links dist --force-reinstall
pip install dist/* --find-links dist --force-reinstall
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand Down
32 changes: 21 additions & 11 deletions .github/workflows/check-release-python.yml.disabled
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ jobs:
strategy:
fail-fast: false
matrix:
package-name: [qcs-sdk-python, qcs-sdk-python-grpc-web]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
# package-name: [qcs-sdk-python, qcs-sdk-python-grpc-web]
package-name: [qcs-sdk-python]
# python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9"]
steps:
- uses: actions/checkout@v4
- name: Install protoc
Expand All @@ -38,7 +40,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
# python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9"]
steps:
- uses: actions/checkout@v4
- name: Install protoc
Expand All @@ -52,7 +55,7 @@ jobs:
package-name: qcs-sdk-python
python-version: ${{ matrix.python-version }}
maturin-target: x86_64
maturin-container: quay.io/pypa/manylinux_2_34_x86_64:latest
maturin-container: quay.io/pypa/manylinux_2_28_x86_64:latest

linux-aarch64:
runs-on: ubuntu-24.04-arm
Expand All @@ -61,7 +64,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
# python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9"]
steps:
- uses: actions/checkout@v4
- name: Install protoc
Expand All @@ -83,7 +87,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
# python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9"]
steps:
- uses: actions/checkout@v4
- name: Install protoc
Expand All @@ -105,7 +110,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
# python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9"]
steps:
- uses: actions/checkout@v4
- name: Install protoc
Expand All @@ -126,8 +132,10 @@ jobs:
strategy:
fail-fast: false
matrix:
package-name: [qcs-sdk-python, qcs-sdk-python-grpc-web]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
# package-name: [qcs-sdk-python, qcs-sdk-python-grpc-web]
package-name: [qcs-sdk-python]
# python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9"]
steps:
- name: Enable long path support
run: |
Expand All @@ -154,8 +162,10 @@ jobs:
strategy:
fail-fast: false
matrix:
package-name: [qcs-sdk-python, qcs-sdk-python-grpc-web]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
# package-name: [qcs-sdk-python, qcs-sdk-python-grpc-web]
package-name: [qcs-sdk-python]
# python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9"]
steps:
- uses: actions/checkout@v4
- name: Install protoc
Expand Down
Loading