@@ -199,11 +199,11 @@ jobs:
199199
200200# Compute Dependencies for MSYS2 steps
201201
202- - name : 🔧 Install dependencies (system Python for Python shell)
203- if : matrix.system == 'msys2'
204- shell : pwsh
205- run : |
206- py -3.9 -m pip install --disable-pip-version-check --break-system-packages -U tomli
202+ # - name: 🔧 Install dependencies (system Python for Python shell)
203+ # if: matrix.system == 'msys2'
204+ # shell: pwsh
205+ # run: |
206+ # py -3.12 -m pip install --disable-pip-version-check --break-system-packages -U tomli
207207
208208 - name : Compute path to requirements file
209209 id : requirements
@@ -286,7 +286,7 @@ jobs:
286286 "ruamel.yaml": "python-ruamel-yaml:p",
287287 # "ruamel.yaml": "python-ruamel-yaml:p python-ruamel.yaml.clib:p",
288288 "sphinx": "python-markupsafe:p",
289- "tomli": "python-tomli:p",
289+ "tomli": "python-tomli:p", # outdated, now part of Python as tomllib
290290 "wheel": "python-wheel:p",
291291 "pyedaa.projectmodel": "python-ruamel-yaml:p python-ruamel.yaml.clib:p python-lxml:p",
292292 "pyedaa.reports": "python-ruamel-yaml:p python-ruamel.yaml.clib:p python-lxml:p",
@@ -351,10 +351,10 @@ jobs:
351351
352352# Python Dependency steps
353353
354- - name : 🔧 Install wheel,tomli and pip dependencies (native)
354+ - name : 🔧 Install wheel and pip dependencies (native)
355355 if : matrix.system != 'msys2'
356356 run : |
357- python -m pip install --disable-pip-version-check -U wheel tomli
357+ python -m pip install --disable-pip-version-check -U wheel
358358 python -m pip install --disable-pip-version-check ${{ steps.requirements.outputs.requirements }}
359359
360360 - name : 🔧 Install pip dependencies (MSYS2)
0 commit comments