reactivated 0.49.0 → 0.49.1-a3262
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/package.json
CHANGED
|
@@ -13,10 +13,6 @@ POSTGRESQL_LOGS="$VIRTUAL_ENV/postgresql/logs.txt"
|
|
|
13
13
|
# directory just for that shell process.
|
|
14
14
|
TMP_ENV="/tmp/reactivated/$(readlink -f "$VIRTUAL_ENV" | md5sum | awk '{print $1}')"
|
|
15
15
|
|
|
16
|
-
# https://github.com/python/mypy/issues/13392
|
|
17
|
-
# https://setuptools.pypa.io/en/latest/userguide/development_mode.html#legacy-behavior
|
|
18
|
-
export SETUPTOOLS_ENABLE_FEATURES="legacy-editable"
|
|
19
|
-
|
|
20
16
|
export PGPORT=1
|
|
21
17
|
export PGDATABASE="database"
|
|
22
18
|
export PGHOST=$TMP_ENV
|
|
@@ -29,10 +25,11 @@ if [ ! -d "$VIRTUAL_ENV" ]; then
|
|
|
29
25
|
fi
|
|
30
26
|
|
|
31
27
|
rm -rf "$TMP_ENV"
|
|
32
|
-
|
|
33
|
-
pip install -r requirements.txt --config-settings editable_mode=compat
|
|
28
|
+
uv venv "$VIRTUAL_ENV"
|
|
34
29
|
fi
|
|
35
30
|
|
|
31
|
+
uv sync --config-setting editable_mode=compat
|
|
32
|
+
|
|
36
33
|
if [ ! -d "$POSTGRESQL_DATA" ]; then
|
|
37
34
|
initdb "$POSTGRESQL_DATA"
|
|
38
35
|
|