← All recipes
Moderne licensed

Upgrade transitive Python dependency version

Recipe IDorg.openrewrite.python.UpgradeTransitiveDependencyVersion
Artifactorg.openrewrite:rewrite-python

Pin a transitive dependency version using the strategy appropriate for the file type and package manager. For pyproject.toml: uv uses [tool.uv].constraint-dependencies, PDM uses [tool.pdm.overrides], and other managers add a direct dependency. For requirements.txt and Pipfile: appends the dependency. For pyproject.toml, uv.lock, poetry.lock, and pdm.lock are regenerated natively without executing the package manager. For Pipfile, Pipfile.lock is regenerated natively by consulting the project's package index over the network. Not safe to use as a precondition: invokes the package manager or the network and publishes per-project state shared with other dependency recipes.

Single recipeMSAL

Usage

You’ll need the Moderne CLI configured before running the command below.

mod run . --recipe org.openrewrite.python.UpgradeTransitiveDependencyVersion --recipe-option "packageName=certifi" --recipe-option "version=>=2023.7.22"

If the recipe isn’t available locally, install it with:

mod config recipes jar install org.openrewrite:rewrite-python:8.88.0

Options

NameTypeDescription
packageNamerequiredStringThe PyPI package name of the transitive dependency to pin.
e.g. certifi
versionrequiredStringThe PEP 508 version constraint (e.g., >=2023.7.22).
e.g. >=2023.7.22

Data tables

Structured output this recipe can produce.

  • Python lock regeneration failuresLock files that could not be regenerated after a dependency edit, and why.org.openrewrite.python.table.PythonLockRegenerationFailures
  • Source files that had resultsSource files that were modified by the recipe run.org.openrewrite.table.SourcesFileResults
  • Source files that had search resultsSearch results that were found during the recipe run.org.openrewrite.table.SearchResults
  • Source files that errored on a recipeThe details of all errors produced by a recipe run.org.openrewrite.table.SourcesFileErrors
  • Recipe performanceStatistics used in analyzing the performance of recipes.org.openrewrite.table.RecipeRunStats