Skip to content

Commit

Permalink
Fix maturin CI : static python version across all targets. (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
feltroidprime authored Dec 2, 2024
1 parent 9191854 commit 74ba49e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/maturin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: "3.10.x"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: "3.10.x"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand All @@ -92,7 +92,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: 3.10.x
architecture: ${{ matrix.platform.target }}
- name: Build wheels
uses: PyO3/maturin-action@v1
Expand All @@ -119,7 +119,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.platform.target == 'x86_64' && '3.10' || '3.x' }}
python-version: "3.10.x"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -165,10 +165,10 @@ jobs:
- uses: software-mansion/setup-scarb@v1
with:
scarb-version: "2.8.4"
- name: Set up Python 3.10.14
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: 3.10.14
python-version: "3.10.x"
- name: Install dependencies
run: make setup
- name: Verify Contract Declaration
Expand Down

0 comments on commit 74ba49e

Please sign in to comment.