@@ -51,18 +51,18 @@ jobs:
5151 - name : Checkout Code
5252 uses : actions/checkout@v6
5353
54- - name : Set up Python 3.11
54+ - name : Set up Python 3.10
5555 uses : actions/setup-python@v6
5656 with :
57- python-version : ' 3.11 '
57+ python-version : ' 3.10 '
5858
5959 - name : Cache pip Dependencies
6060 uses : actions/cache@v5
6161 with :
6262 path : ~/.cache/pip
63- key : ${{ runner.os }}-lint-pip-3.11 -${{ hashFiles('**/pyproject.toml') }}
63+ key : ${{ runner.os }}-lint-pip-3.10 -${{ hashFiles('**/pyproject.toml') }}
6464 restore-keys : |
65- ${{ runner.os }}-lint-pip-3.11 -
65+ ${{ runner.os }}-lint-pip-3.10 -
6666
6767 - name : Install Linters and Type Checker
6868 run : |
8787 fail-fast : false
8888 matrix :
8989 os : [ubuntu-latest, macos-latest, windows-latest]
90- python-version : [3.9, '3.10', '3.11', '3.12', '3.13']
90+ python-version : ['3.10', '3.11', '3.12', '3.13']
9191
9292 runs-on : ${{ matrix.os }}
9393
@@ -153,7 +153,7 @@ jobs:
153153 strategy :
154154 fail-fast : false
155155 matrix :
156- python-version : [pypy-3.9 , pypy-3.10 ]
156+ python-version : [pypy-3.10 , pypy-3.11 ]
157157
158158 steps :
159159 - name : Checkout Code
@@ -208,7 +208,7 @@ jobs:
208208
209209 - name : Run mutation testing
210210 run : |
211- mutmut run --paths-to-mutate=src/treemapper/ --tests-dir=tests/ || true
211+ mutmut run || true
212212 mutmut results || true
213213
214214 # ============================================================================
@@ -332,7 +332,7 @@ jobs:
332332 sonar.tests=tests
333333 sonar.python.coverage.reportPaths=coverage.xml
334334 sonar.python.xunit.reportPath=test-results.xml
335- sonar.python.version=3.9,3. 10,3.11,3.12,3.13
335+ sonar.python.version=3.10,3.11,3.12,3.13
336336 EOF
337337
338338 - name : SonarCloud Scan
0 commit comments