@mnci/nx-python-pip 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ ships only `uv` and Poetry providers, and every alternative found on npm is
|
|
|
11
11
|
either the same uv/Poetry architecture or years stale. If your organization
|
|
12
12
|
standardizes on plain pip (no uv, no Poetry), this plugin fills that gap.
|
|
13
13
|
|
|
14
|
-
It was built for and is used by [`@mnci/cli`](../cli)'s `
|
|
14
|
+
It was built for and is used by [`@mnci/cli`](../cli)'s `mnci add python-*`
|
|
15
15
|
commands, but has no dependency on `@mnci/cli` — any Nx 21+ workspace can
|
|
16
16
|
install and use it directly.
|
|
17
17
|
|
|
@@ -115,6 +115,12 @@ dependencies).
|
|
|
115
115
|
wheel — not from a plain `pip install -e .` dev environment, since
|
|
116
116
|
vendoring happens at `build` time only. A project whose pytest-covered
|
|
117
117
|
code imports a vendored internal lib needs its own test-isolation
|
|
118
|
-
strategy; the `test` executor makes no attempt to solve this
|
|
118
|
+
strategy; the `test` executor makes no attempt to solve this (it only
|
|
119
|
+
editable-installs the project under test, never what it imports). A
|
|
120
|
+
workspace can solve it at the workspace level instead, by
|
|
121
|
+
editable-installing every Python project (not just the one under test)
|
|
122
|
+
into one shared environment — the pip-world counterpart of `npm install`
|
|
123
|
+
hoisting every workspace package into one root `node_modules`. `@mnci/cli`
|
|
124
|
+
does exactly this as a guarded CI step; see its README.
|
|
119
125
|
- venv management is left to the user — same spirit as never managing
|
|
120
126
|
`node_modules` beyond `npm install`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mnci/nx-python-pip",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "An Nx plugin for pip-native Python projects (Ruff + pytest + the standard PyPA build/twine tools) — no uv, no Poetry, no lock file.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|