@@ -12,13 +12,17 @@ jobs:
1212    strategy :
1313      fail-fast : false 
1414      matrix :
15-         python-version : ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.9 ", "pypy-3.10 "] 
15+         python-version : ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.10 ", "pypy-3.11 "] 
1616        os : [ubuntu-22.04, macOS-latest, windows-latest] 
17+         #  Pypy-3.11 can't install openssl-sys with rust
18+         #  which prevents us from testing in GHA.
19+         exclude :
20+         - { python-version: "pypy-3.11", os: "windows-latest" } 
1721
1822    steps :
1923    - uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938  #  v4.2.0
2024    - name : Set up Python ${{ matrix.python-version }} 
21-       uses : actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55   #  v5.5 .0
25+       uses : actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065   #  v5.6 .0
2226      with :
2327        python-version : ${{ matrix.python-version }} 
2428        cache : ' pip' 
3943    steps :
4044      - uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 
4145      - name : ' Set up Python 3.8' 
42-         uses : actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55  
46+         uses : actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065  
4347        with :
4448          python-version : ' 3.8' 
4549      - name : Install dependencies 
5963    steps :
6064      - uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 
6165      - name : ' Set up Python 3.8' 
62-         uses : actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55  
66+         uses : actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065  
6367        with :
6468          python-version : ' 3.8' 
6569      - name : Install dependencies 
0 commit comments