actions / setup-python

Set up your GitHub Actions workflow with a specific version of Python
MIT License
1.68k stars 538 forks source link

fix(ci): update all failing workflows #863

Closed mayeut closed 3 months ago

mayeut commented 4 months ago

Description:

With macos-latest moving to macos-14, most workflows are currently failing. Update them to be able to run on macos-latest

Don't test python 3.5 on ubuntu. It's been EOL for almost 4 years and there are now some certificate issues with pip.

fix #891

mayeut commented 3 months ago

please do note that since the PR was opened, #866 & #868 have been opened. So while this PR removes testing 3.5 as mentioned in the description, maintainers here shall take action to re-add tests once those issues are fixed (or not if triaged to "won't fix").

priya-kinthali commented 3 months ago

Hello @mayeut 👋 Could you please also remove the setup and verification steps for Python EOL versions (3.5, 3.6 and 3.7)? This will help us keep the testing framework up to date with currently supported Python versions. Thanks again for your work on this.

mayeut commented 3 months ago

hello @priya-kinthali,

Could you please also remove the setup and verification steps for Python EOL versions (3.5, 3.6 and 3.7)?

done

priya-kinthali commented 3 months ago

Hello @mayeut 👋, Thanks for your prompt response and for making the requested changes😊 Could you kindly extend your contribution by including the latest Python versions in test workflows(for eg. e2e-tests.yml)? This would aid in ensuring that our tests are running on the most current versions of Python.
 Your diligent efforts are deeply appreciated:)

mayeut commented 3 months ago

Could you kindly extend your contribution by including the latest Python versions in test workflows(for eg. e2e-tests.yml)?

They are already tested in .github/workflows/test-python.yml check-latest job

priya-kinthali commented 3 months ago

They are already tested in .github/workflows/test-python.yml check-latest job.

You're right, the latest Python versions are indeed tested in the test-python.yml workflow. However, we also want to ensure that our end-to-end tests in e2e-tests.yml are kept up-to-date and are running on the most recent Python versions as well. Could you please include the latest Python versions in the e2e-tests.yml file too. Thanks!