-
-
Notifications
You must be signed in to change notification settings - Fork 684
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 Fix broken installation when upgrading from
typer <0.12.0
to `typ…
…er >=0.12.0`, make `typer` independent of `typer-slim`, include `typer` command in `typer` package (#791)
- Loading branch information
Showing
13 changed files
with
128 additions
and
240 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import os | ||
from typing import Any, Dict, List | ||
|
||
from pdm.backend.hooks import Context | ||
|
||
TIANGOLO_BUILD_PACKAGE = os.getenv("TIANGOLO_BUILD_PACKAGE", "typer") | ||
|
||
|
||
def pdm_build_initialize(context: Context): | ||
metadata = context.config.metadata | ||
# Get main version | ||
version = metadata["version"] | ||
# Get package names to keep in sync with the same main version | ||
sync_dependencies: List[str] = context.config.data["tool"]["tiangolo"][ | ||
"_internal-slim-build" | ||
]["sync-dependencies"] | ||
# Get custom config for the current package, from the env var | ||
config: Dict[str, Any] = context.config.data["tool"]["tiangolo"][ | ||
"_internal-slim-build" | ||
]["packages"][TIANGOLO_BUILD_PACKAGE] | ||
project_config: Dict[str, Any] = config["project"] | ||
# Get main optional dependencies, extras | ||
optional_dependencies: Dict[str, List[str]] = metadata.get( | ||
"optional-dependencies", {} | ||
) | ||
# Get custom optional dependencies name to always include in this (non-slim) package | ||
include_optional_dependencies: List[str] = config.get( | ||
"include-optional-dependencies", [] | ||
) | ||
# Override main [project] configs with custom configs for this package | ||
for key, value in project_config.items(): | ||
metadata[key] = value | ||
# Get custom build config for the current package | ||
build_config: Dict[str, Any] = ( | ||
config.get("tool", {}).get("pdm", {}).get("build", {}) | ||
) | ||
# Override PDM build config with custom build config for this package | ||
for key, value in build_config.items(): | ||
context.config.build_config[key] = value | ||
# Get main dependencies | ||
dependencies: List[str] = metadata.get("dependencies", []) | ||
# Add optional dependencies to the default dependencies for this (non-slim) package | ||
for include_optional in include_optional_dependencies: | ||
optional_dependencies_group = optional_dependencies.get(include_optional, []) | ||
dependencies.extend(optional_dependencies_group) | ||
# Sync versions in dependencies | ||
new_dependencies = [] | ||
for dep in dependencies: | ||
if dep in sync_dependencies: | ||
new_dep = f"{dep}=={version}" | ||
new_dependencies.append(new_dep) | ||
else: | ||
new_dependencies.append(dep) | ||
if new_dependencies != dependencies: | ||
metadata["dependencies"] = new_dependencies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.