fix: default bridge and tests to project venv Python
Use .venv/bin/python3 by default, with PYTHON_PATH as an override, and update the setup script and docs to match the new virtualenv-based workflow.
This commit is contained in:
+1
-1
@@ -10,7 +10,7 @@
|
||||
"test": "bun test",
|
||||
"test:unit": "bun test",
|
||||
"test:integration": "bun run src/test-integration.ts",
|
||||
"setup:python": "python3 -m pip install pykeepass"
|
||||
"setup:python": "test -x .venv/bin/python3 || python3 -m venv .venv && .venv/bin/pip install pykeepass"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
|
||||
Reference in New Issue
Block a user