@@ -35,17 +35,16 @@ jobs:
3535
3636 build :
3737 needs : [fmt] # don't wait for clippy as fails rarely and takes longer
38- name : python${{ matrix.python-version }}-${{ matrix.platform.python-architecture }} ${{ matrix.platform.os }} ${{ matrix.msrv }}
38+ name : python${{ matrix.python-version }}-${{ matrix.platform.python-architecture }} ${{ matrix.platform.os }}
3939 runs-on : ${{ matrix.platform.os }}
4040 strategy :
4141 fail-fast : false # If one platform fails, allow the rest to keep testing.
4242 matrix :
43- python-version : [3.7, 3.8, 3.9 , "3.10 "]
43+ python-version : ["3.8", "3.9", "3.10" , "3.11", "3.12 "]
4444 platform : [
45- { os: "macOS-latest", python-architecture: "x64", rust-target: "x86_64-apple-darwin" },
46- { os: "ubuntu-latest", python-architecture: "x64", rust-target: "x86_64-unknown-linux-gnu" },
47- { os: "windows-latest", python-architecture: "x64", rust-target: "x86_64-pc-windows-msvc" },
48- { os: "windows-latest", python-architecture: "x86", rust-target: "i686-pc-windows-msvc" },
45+ { os: "macOS-latest", rust-target: "x86_64-apple-darwin" },
46+ { os: "ubuntu-latest", rust-target: "x86_64-unknown-linux-gnu" },
47+ { os: "windows-latest", rust-target: "x86_64-pc-windows-msvc" },
4948 ]
5049
5150 steps :
5554 uses : actions/setup-python@v2
5655 with :
5756 python-version : ${{ matrix.python-version }}
58- architecture : ${{ matrix.platform.python-architecture }}
57+ architecture : x64
5958
6059 - name : Install Rust toolchain
6160 uses : actions-rs/toolchain@v1
0 commit comments