-
Notifications
You must be signed in to change notification settings - Fork 512
AppVeyor: Test and support versions 8, 10, 12, 14, 16, 17, 18, 19, 20, 21, and 22 #983
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Thank you. This looks good to me. While I do not think testing on multiple Python versions for the sake of testing Python is necessary, I do not see it hurting apart from longer runtimes. The reason for originally specifying multiple Python versions was just to get it all working with various images and versions. |
The real problem is
Please review and merge #985 and make a new npm release. If long test runtimes (2+ hours) is an issue then please review and merge
|
Python 3.9 is the oldest version of Python that is supported. * https://devguide.python.org/versions
@kkoopa Your review, please. This puts README.md, AppVeyor, and GitHub Actions in sync on which versions to test. |
…, 21, and 22 (#983) * AppVeyor: Test on a supported version of Python Python 3.9 is the oldest version of Python that is supported. * https://devguide.python.org/versions * node-gyp > v10 * versions 8, 10, 12, 14, 16, 17, 18, 19, 20, 21, and 22
Tested versions 8, 10, 12, 14, 16, 17, 18, 19, 20, 21, and 22.
Test supported Node.js versions before unsupported versions because each test takes ~5 minutes.
Test on the most current Visual Studio possible for each nodejs_version.
Test on the oldest supported Python version when possible (currently py39).
For all supported Node.js versions also test on the newest Python (currently py313).
Test results: https://ci.appveyor.com/project/RodVagg/nan
Visual Studio 2017 image tops out at Python 3.8 which is end-of-life.
Visual Studio 2019 and 2022 images top out at Python 3.13.
node-gyp
issues related tonan
: https://github.com/nodejs/node-gyp/issues?q=label%3Anodejs%2FnanThe Node.js v23 tests are commented out waiting for:
The Python 3.12 and 3.13 tests are commented out waiting for:package.json: Upgrade node-gyp to support Python >= v3.12 #985 because of:distutils is removed in Python 3.12 node-gyp#2869@kkoopa Your review, please. These changes enable us to focus on the two issues above.