Skip to content

Commit

Permalink
fix python version
Browse files Browse the repository at this point in the history
  • Loading branch information
paulocoutinhox committed Dec 14, 2023
1 parent 1c87a20 commit 7764f8d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 12 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,14 @@ jobs:
matrix:
config:
- { name: "Ubuntu", os: "ubuntu-20.04", target: "android" }
python-version: [3.10]

steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
python-version: "3.10"

- name: Upgrade PIP
run: python3 -m pip install --upgrade pip setuptools wheel
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,14 @@ jobs:
matrix:
config:
- { name: "macOS", os: "macos-latest", target: "ios" }
python-version: [3.10]

steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
python-version: "3.10"

- name: Upgrade PIP
run: python3 -m pip install --upgrade pip setuptools wheel
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,14 @@ jobs:
matrix:
config:
- { name: "macOS", os: "macos-12", target: "macos" }
python-version: [3.10]

steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
python-version: "3.10"

- name: Upgrade PIP
run: python3 -m pip install --upgrade pip setuptools wheel
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,14 @@ jobs:
matrix:
config:
- { name: "Ubuntu", os: "ubuntu-20.04", target: "wasm" }
python-version: [3.10]

steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
python-version: "3.10"

- name: Upgrade PIP
run: python3 -m pip install --upgrade pip setuptools wheel
Expand Down

0 comments on commit 7764f8d

Please sign in to comment.