pipenv-unlock¶
Entrypoint for dependency lock unlock and fix
- drain_swamp.cli_dependencies.entrypoint_name: str = "pipenv-unlock"¶
Command line entrypoint file name
- drain_swamp.cli_dependencies.help_show_unresolvables: str¶
cli option
--show-unresolvables
doc string
cli option
--show-resolvable-shared
doc string
- drain_swamp.cli_dependencies.main()¶
pipenv-unlock --help, prints help
pipenv-unlock COMMAND --help, prints help for a command
Table 12 Commands¶ command
creates
desc
.lock
Create lock dependency file
.unlock
Create unlock dependency file
In requirements, fixes/reports dependency conflicts
- drain_swamp.cli_dependencies.dependencies_lock(*args: Any, **kwargs: Any) Any ¶
Lock dependencies creates (
*.lock
) filesDisadvantages of locking dependencies
FOSS is
as-is
, largely unpaid work, often lacks necessary skillset, often doesn’t care to do tedious tasks, is pressed for time, and live happens. These are the people supposed to be making packages for production use?! Having such expectations is ridiculous and conflicts with the human conditionpackage quickly becomes unusable when, not if, the author is no longer maintaining the package
Non-experts might not be using pipenv, only pip. Almost guaranteeing dependency hell.
pip
won’t have what it needs to resolve dependency version conflictspipenv
says don’t automate updating dependency lock files thru CI/CDMultiple calls to
pip-compile
always causes avoidable mistakes; choosing non-sync’ed dependency versions.
Advantage
Job security. Knowledgable eyeballs must regularly update dependency version locks
pipenv
discourages attackers setting up alternative repository hostspypi.org
and swapping out an obscure package with their own.The stars align in the cosmos, miraculously, all package authors regularly update their packages dependencys’ locks. Get that warm feeling inside knowing we are alive, loved, and appreciated. We shout,
it's a miracle!
and be right!
Usage
pipenv-unlock lock
or
python src/drain_swamp/cli_dependencies.py lock
- Parameters:
path¶ (pathlib.Path) – The root directory [default: pyproject.toml directory]
venv_relpath¶ (pathlib.Path) – Filter by venv relative path
- drain_swamp.cli_dependencies.dependencies_unlock(*args: Any, **kwargs: Any) Any ¶
Unlock dependencies creates (
*.unlock
) filesPackage dependencies are only locked if the package is an app. A
.in
resolves-r
and-c
, which can be understood by pipUsage
pipenv-unlock unlock
or
python src/drain_swamp/cli_dependencies.py unlock
- Parameters:
path¶ (pathlib.Path) – The root directory [default: pyproject.toml directory]
venv_relpath¶ (pathlib.Path) – Filter by venv relative path
- drain_swamp.cli_dependencies.requirements_fix(*args: Any, **kwargs: Any) Any ¶
Goes thru
.lock
and.unlock
files, fixing resolvable dependency resolution conflicts. Reporting what needs manual care.For unresolvable or sensitive resolvable issues, manually apply fixes to applicable
[.shared].in
files. Then rerun the cyclepipenv-unlock lock pipenv-unlock unlock pipenv-unlock fix
Reporting:
Resolved issues
Long list of resolved dependency issues. Every entry represents tedious error prone work that no longer has to be done manually
Python users are tormented by dependency resolution conflicts. With little or no possible relief besides applying manual fixes.
Resolvable but file is shared across more than one venv.
These files end in
.shared.{.unlock, .lock}
suffixes. Fix algo deals in one venv, not multiple venv. Instead of fixing, issue is reported.unresolvable dependency conflict
Details the affected files and conflict details. Something has to give. And a human needs to figure out what.
Find the offending dependency package and look at
pyproject.toml
. Paying attention to dependency version restrictions.use a different package release version or raise the issue with the upstream package maintainers
Popular packages wield power for their mistakes to affect the most people. Look out for abandonware or packages wrapping C code.
Assumes familiarity with and usage of:
pyproject.toml
[[ tool.venvs ]]
sections.in
,.unlock
, and.lock
files. Fix not applied to(.shared).in
files.
- Parameters:
path¶ (pathlib.Path) – The root directory [default: pyproject.toml directory]
venv_relpath¶ (pathlib.Path) – Filter by venv relative path
is_dry_run¶ (Any | None) – Default False. Should be a bool. Do not make changes. Merely report what would have been changed
show_unresolvables¶ (bool) – Default True. Report unresolvable dependency conflicts
show_resolvable_shared¶ (bool) – Default True. Report resolvable issues affecting
.shared.{.unlock, .lock}
files.