Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

chore(deps): update python docker tag #171

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

Closed
renovate wants to merge 434 commits into main from renovate/python-3.x
Closed

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 10, 2025

This PR contains the following updates:

Package Type Update Change
python minor 3.13.7 -> 3.14.0
python stage minor 3.13-slim-bookworm -> 3.14-slim-bookworm

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

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

chore(platform): update to latest openapi spec
refactor(boot): reduce boot time
docs: minor tweaks
Bumps [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) from 6.3.0 to 6.3.1.
- [Release notes](https://github.com/astral-sh/setup-uv/releases)
- [Commits](astral-sh/setup-uv@445689e...bd01e18)
---
updated-dependencies:
- dependency-name: astral-sh/setup-uv
 dependency-version: 6.3.1
 dependency-type: direct:production
 update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Helmut Hoffer von Ankershoffen né Oertel <helmut@aignostics.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* fix(platform): Remove unused setting authorization_backoff_seconds
* feat(platform): Auto-retry when retrieving JWKS set from auth0
* feat(platform): Cache JWKS set, TTL 24h, minimizing calls to auth0 on validating access tokens
* feat(platform): Auto-retry when calling auth0 to exchange refresh token for access token
* refactor(platform): Use proper error messages and logging on failure (of attempts) to exchange refresh token and validate access token
* fix(utils): surface setting validation error on misconfigured api root
* refactor(platform): consistently use HTTPStatus consts instead of 200, 500 etc.
* refactor(platform): use proper constraints on settings
* fix(platform): fix wrong exception handler in _perform_device_flow - was catching exception from urllib, not requests lib
* feat(platform): configurable timeout for requesting platform health
* feat(platform): introduce authentication aware operation cache
* feat(platform): use authentication aware operation cache to cache /me result
* chore(pytst): Add pytest-durations plugin to show durations of fixtures and tests
* refactor(platform,system): optimize connection pooling
* fix(platform): use dynamic user agent for requesting /me
* style(utils): consistent log formatting for file and console, both including process id
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Helmut Hoffer von Ankershoffen né Oertel <helmut@aignostics.com>
Copy link
Contributor

Has to wait for general support for Python 3.14 which needs updates of some dependencies.

Copy link

claude bot commented Oct 10, 2025

Pull Request Review: Python 3.14.0 Update

Summary

This PR updates Python from 3.13.7 to 3.14.0 in both .python-version and Dockerfile. This is an automated dependency update by Renovate.

Critical Issues

Python 3.14.0 is NOT officially released yet

Python 3.14 is currently in development and not yet stable. The final release is scheduled for October 2025 (approximately one year from now, based on PEP 719). As of today (2025年10月10日), Python 3.14.0 may be an alpha/beta release at best.

Recommendation: DO NOT MERGE this PR until Python 3.14.0 is officially released and stable.


Additional Concerns

1. Missing Python 3.14 in Test Matrix

The project currently tests against Python 3.11, 3.12, and 3.13:

  • pyproject.toml:73 declares requires-python = '>=3.11, <4.0'
  • pyproject.toml:60-62 lists classifiers for Python 3.11, 3.12, 3.13 only
  • noxfile.py:25 defines TEST_PYTHON_VERSIONS = ['3.11', '3.12', '3.13']
  • Makefile:40,44,48 hardcodes Python 3.13 for special test commands

Impact: Even when Python 3.14 is released, this PR doesn't add it to the test matrix, so the SDK won't actually be tested against 3.14.

Required changes when 3.14 is released:

  1. Add '3.14' to TEST_PYTHON_VERSIONS in noxfile.py:25
  2. Add Python 3.14 classifier to pyproject.toml:62
  3. Update dist_native target in Makefile:86 to use appropriate Python version
  4. Update hardcoded 3.13 references in Makefile test commands if needed

2. Incomplete Version Update

The PR only updates .python-version and Dockerfile, but misses other Python version references:

  • noxfile.py:24 defines PYTHON_VERSION = '3.13' - used as default for various nox sessions
  • Makefile:86 uses --python 3.13.6 for native builds
  • Multiple test commands hardcode 3.13

Question: What is the intended purpose of updating .python-version? Is this for:

  • Developer local environment setup?
  • CI/CD default Python version?
  • Docker container builds?

If only the Docker image should use 3.14, then .python-version should remain at 3.13.7 until all infrastructure is ready for 3.14.

3. Dependency Compatibility Unknown

The project has 50+ dependencies. Without testing against Python 3.14:

  • No guarantee that all dependencies support Python 3.14
  • Binary wheels may not be available yet for Python 3.14
  • Some dependencies (like openslide-bin, pywin32, boto3) may need time to release 3.14-compatible versions

Security and Performance Considerations

  • No security concerns with the changes themselves
  • Using unreleased Python versions in production is a security/stability risk
  • Python 3.14 may have breaking changes not yet documented

Recommended Action Plan

Short term (now):

  1. Close or hold this PR until Python 3.14.0 is officially released
  2. Configure Renovate to ignore Python versions still in alpha/beta

When Python 3.14.0 is officially released:

  1. Add Python 3.14 to test matrix (noxfile.py)
  2. Add Python 3.14 classifier to pyproject.toml
  3. Run full test suite against Python 3.14 on all platforms
  4. Verify all dependencies support Python 3.14
  5. Update all Python version references consistently
  6. Then merge a comprehensive Python 3.14 support PR

Code Quality

  • Changes are clean and minimal
  • No syntax issues
  • Changes are premature and incomplete

Overall Recommendation: REJECT - Python 3.14.0 is not yet stable. Wait for official release and include comprehensive test coverage when adding Python 3.14 support.

Copy link

Copy link
Contributor Author

renovate bot commented Oct 10, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@helmut-hoffer-von-ankershoffen helmut-hoffer-von-ankershoffen added bot Automated pull requests or issues renovate Pull requests from Renovate skip:test:long_running Skip long-running tests (≥5min) dependencies Pull requests that update a dependency file and removed bug Something isn't working labels Oct 13, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Reviewers

@helmut-hoffer-von-ankershoffen helmut-hoffer-von-ankershoffen Awaiting requested review from helmut-hoffer-von-ankershoffen

Labels

bot Automated pull requests or issues dependencies Pull requests that update a dependency file renovate Pull requests from Renovate skip:test:long_running Skip long-running tests (≥5min)

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

AltStyle によって変換されたページ (->オリジナル) /