Add GitHub Actions support for Windows on ARM (WoA)#4
Conversation
dependencies/action.yml
Outdated
| if: ${{ runner.os != 'Linux' }} | ||
| with: | ||
| python-version: '3.10' | ||
| python-version: ${{ runner.arch == 'ARM64' && '3.11' || '3.10' }} |
There was a problem hiding this comment.
If it does work with 3.11 on windows-arm, I believe we could simply bump the version for all platforms
There was a problem hiding this comment.
Yes. I can do. All platforms, did build successfully with 3.11.
However, I was worried that, if any platform has any 3.10 dependency then, people might face issues while using the application?
I felt using 3.11 only for WoA is safe and many not break anything.
Is that ok to bump the version to 3.11 all platforms? I yes, I will make the change. Please let me know.
Thank you.
There was a problem hiding this comment.
I felt using 3.11 only for WoA is safe and many not break anything.
thanks for that!
people might face issues while using the application?
this is only configure-time dependency, it would not affect end users
Is that ok to bump the version to 3.11 all platforms
lets go with 3.11!
There was a problem hiding this comment.
Ok. Will update soon. Thank you.
989e8bd to
e5cb3ce
Compare
The python version is updated to 3.11 as there is no python 3.10 available for WoA.
e5cb3ce to
7699d6d
Compare
The python version is updated to 3.11 as there is no python 3.10 available for WoA.