Content-Length: 421395 | pFad | http://github.com/uxlfoundation/scikit-learn-intelex/pull/2496

15 chore(deps): update dependency python to 3.13 by renovate[bot] · Pull Request #2496 · uxlfoundation/scikit-learn-intelex · GitHub
Skip to content

chore(deps): update dependency python to 3.13 #2496

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 29, 2025

This PR contains the following updates:

Package Type Update Change
python uses-with minor 3.11 -> 3.13

Release Notes

actions/python-versions (python)

v3.13.3: 3.13.3

Compare Source

Python 3.13.3

v3.13.2: 3.13.2

Compare Source

Python 3.13.2

v3.13.1: 3.13.1

Compare Source

Python 3.13.1

v3.13.0: 3.13.0

Compare Source

Python 3.13.0

v3.12.10: 3.12.10

Compare Source

Python 3.12.10

v3.12.9: 3.12.9

Compare Source

Python 3.12.9

v3.12.8: 3.12.8

Compare Source

Python 3.12.8

v3.12.7: 3.12.7

Compare Source

Python 3.12.7

v3.12.6: 3.12.6

Compare Source

Python 3.12.6

v3.12.5: 3.12.5

Compare Source

Python 3.12.5

v3.12.4: 3.12.4

Compare Source

Python 3.12.4

v3.12.3: 3.12.3

Compare Source

Python 3.12.3

v3.12.2: 3.12.2

Compare Source

Python 3.12.2

v3.12.1: 3.12.1

Compare Source

Python 3.12.1

v3.12.0: 3.12.0

Compare Source

Python 3.12.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/python-3.x branch from fca8b21 to d7dd6b0 Compare May 29, 2025 06:08
Copy link

codecov bot commented May 29, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Flag Coverage Δ
azure 79.87% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@ethanglaser
Copy link
Contributor

@yuejiaointel @david-cortes-intel FYI. Not sure if python version matters for doc release work.

@david-cortes-intel
Copy link
Contributor

@yuejiaointel @david-cortes-intel FYI. Not sure if python version matters for doc release work.

It does matter because 3.13 has breaking changes in terms of how docstrings are post-processed by python, but the CI job is green so guess all our workarounds worked.

@yuejiaointel
Copy link
Contributor

yuejiaointel commented Jun 2, 2025

Yes I tested new python when I was working on doc release and intelex doc build will have errors, example on my fork: https://github.com/yuejiaointel/scikit-learn-intelex/actions/runs/15126053446/job/42518204573

@ethanglaser
Copy link
Contributor

Up to you on what makes sense - whether its closing this one and continuing to use 3.11 or leaving it open and creating a fix/ticket to address the issue with 3.13

@david-cortes-intel
Copy link
Contributor

Yes I tested new python when I was working on doc release and intelex doc build will have errors, example on my fork: https://github.com/yuejiaointel/scikit-learn-intelex/actions/runs/15126053446/job/42518204573

But the CI here shows in green, and the generated artifact looks fine. Or is there something that the CI here is not catching?

@yuejiaointel
Copy link
Contributor

yuejiaointel commented Jun 3, 2025

Yes I tested new python when I was working on doc release and intelex doc build will have errors, example on my fork: https://github.com/yuejiaointel/scikit-learn-intelex/actions/runs/15126053446/job/42518204573

But the CI here shows in green, and the generated artifact looks fine. Or is there something that the CI here is not catching?

I think it is a potential bug, I noticed in the --gh-pages we did not pass -W to sphinx-build command, makefile has $(o) so we don't need it in make html, but need to explicitly pass it in sphinx-build , will make a quick PR to fix this

@david-cortes-intel
Copy link
Contributor

Yes I tested new python when I was working on doc release and intelex doc build will have errors, example on my fork: https://github.com/yuejiaointel/scikit-learn-intelex/actions/runs/15126053446/job/42518204573

But the CI here shows in green, and the generated artifact looks fine. Or is there something that the CI here is not catching?

I think it is a potential bug, I noticed in the --gh-pages we did not pass -W to sphinx-build command, makefile has $(o) so we don't need it in make html, but need to explicitly pass it in sphinx-build , will make a quick PR to fix this

But the CI job doesn't use --gh-pages.

@yuejiaointel
Copy link
Contributor

Yes I tested new python when I was working on doc release and intelex doc build will have errors, example on my fork: https://github.com/yuejiaointel/scikit-learn-intelex/actions/runs/15126053446/job/42518204573

But the CI here shows in green, and the generated artifact looks fine. Or is there something that the CI here is not catching?

I think it is a potential bug, I noticed in the --gh-pages we did not pass -W to sphinx-build command, makefile has $(o) so we don't need it in make html, but need to explicitly pass it in sphinx-build , will make a quick PR to fix this

But the CI job doesn't use --gh-pages.

Tho the doc CI does not use gh-pages, the doc release pipeline is using it

@david-cortes-intel
Copy link
Contributor

Yes I tested new python when I was working on doc release and intelex doc build will have errors, example on my fork: https://github.com/yuejiaointel/scikit-learn-intelex/actions/runs/15126053446/job/42518204573

But the CI here shows in green, and the generated artifact looks fine. Or is there something that the CI here is not catching?

I think it is a potential bug, I noticed in the --gh-pages we did not pass -W to sphinx-build command, makefile has $(o) so we don't need it in make html, but need to explicitly pass it in sphinx-build , will make a quick PR to fix this

But the CI job doesn't use --gh-pages.

Tho the doc CI does not use gh-pages, the doc release pipeline is using it

@yuejiaointel But then: there doesn't seem to be anything wrong with the updates in this PR. The CI job here gets passed the -W option currently, and doesn't result in the same import errors that were popping up in a pipeline from your fork. The generated artifact also looks Ok here as far as I can tell.

@yuejiaointel
Copy link
Contributor

yuejiaointel commented Jun 6, 2025

Yes I tested new python when I was working on doc release and intelex doc build will have errors, example on my fork: https://github.com/yuejiaointel/scikit-learn-intelex/actions/runs/15126053446/job/42518204573

But the CI here shows in green, and the generated artifact looks fine. Or is there something that the CI here is not catching?

I think it is a potential bug, I noticed in the --gh-pages we did not pass -W to sphinx-build command, makefile has $(o) so we don't need it in make html, but need to explicitly pass it in sphinx-build , will make a quick PR to fix this

But the CI job doesn't use --gh-pages.

Tho the doc CI does not use gh-pages, the doc release pipeline is using it

@yuejiaointel But then: there doesn't seem to be anything wrong with the updates in this PR. The CI job here gets passed the -W option currently, and doesn't result in the same import errors that were popping up in a pipeline from your fork. The generated artifact also looks Ok here as far as I can tell.

I think because docs.yml in .ci is using python 3.11, but this PR is changing python version for doc-release.yml from 3.11 to 3.13, so the CI job pass without any warnings. But if we make this change, doc-release.yml when triggered by tag/manually will fail

versionSpec: '3.11'

@david-cortes-intel
Copy link
Contributor

Got it. So then a first step before merging this PR would be to upgrade the regular docs CI to python3.13 and ensure that it works correctly (CC @ethanglaser ).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: http://github.com/uxlfoundation/scikit-learn-intelex/pull/2496

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy