firehot 0.4.2.dev1__tar.gz → 0.5.2__tar.gz
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.
- {firehot-0.4.2.dev1 → firehot-0.5.2}/.github/workflows/ci-test.yml +5 -5
- firehot-0.5.2/.python-version +1 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/Cargo.lock +473 -317
- firehot-0.5.2/Cargo.toml +37 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/Makefile +1 -1
- {firehot-0.4.2.dev1 → firehot-0.5.2}/PKG-INFO +2 -2
- {firehot-0.4.2.dev1 → firehot-0.5.2}/demopackage/uv.lock +1 -1
- firehot-0.5.2/dist_clean/firehot-0.5.2-cp310-abi3-macosx_10_12_x86_64.whl +0 -0
- firehot-0.5.2/dist_clean/firehot-0.5.2-cp310-abi3-macosx_11_0_arm64.whl +0 -0
- firehot-0.5.2/dist_clean/firehot-0.5.2-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl +0 -0
- firehot-0.5.2/dist_clean/firehot-0.5.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/pyproject.toml +20 -3
- {firehot-0.4.2.dev1 → firehot-0.5.2}/src/ast.rs +243 -34
- {firehot-0.4.2.dev1 → firehot-0.5.2}/src/environment.rs +547 -23
- {firehot-0.4.2.dev1 → firehot-0.5.2/src}/firehot/context.py +5 -3
- firehot-0.5.2/src/firehot/embedded/import_safety_probe.py +139 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2/src}/firehot/embedded/parent_entrypoint.py +139 -24
- {firehot-0.4.2.dev1 → firehot-0.5.2/src}/firehot/environment.py +6 -4
- {firehot-0.4.2.dev1 → firehot-0.5.2/src}/firehot/naming.py +2 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/src/layer.rs +215 -64
- {firehot-0.4.2.dev1 → firehot-0.5.2}/src/lib.rs +28 -14
- {firehot-0.4.2.dev1 → firehot-0.5.2}/src/multiplex_logs.rs +1 -1
- {firehot-0.4.2.dev1 → firehot-0.5.2}/src/process.rs +22 -14
- firehot-0.5.2/src/python.rs +48 -0
- firehot-0.5.2/src/scripts.rs +6 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/src/test_utils/harness.rs +11 -48
- firehot-0.5.2/uv.lock +321 -0
- firehot-0.4.2.dev1/Cargo.toml +0 -36
- firehot-0.4.2.dev1/dist_clean/firehot-0.4.2.dev1-cp310-cp310-macosx_10_12_x86_64.whl +0 -0
- firehot-0.4.2.dev1/dist_clean/firehot-0.4.2.dev1-cp310-cp310-macosx_11_0_arm64.whl +0 -0
- firehot-0.4.2.dev1/dist_clean/firehot-0.4.2.dev1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl +0 -0
- firehot-0.4.2.dev1/dist_clean/firehot-0.4.2.dev1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
- firehot-0.4.2.dev1/dist_clean/firehot-0.4.2.dev1-cp311-cp311-macosx_10_12_x86_64.whl +0 -0
- firehot-0.4.2.dev1/dist_clean/firehot-0.4.2.dev1-cp311-cp311-macosx_11_0_arm64.whl +0 -0
- firehot-0.4.2.dev1/dist_clean/firehot-0.4.2.dev1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl +0 -0
- firehot-0.4.2.dev1/dist_clean/firehot-0.4.2.dev1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
- firehot-0.4.2.dev1/dist_clean/firehot-0.4.2.dev1-cp312-cp312-macosx_10_12_x86_64.whl +0 -0
- firehot-0.4.2.dev1/dist_clean/firehot-0.4.2.dev1-cp312-cp312-macosx_11_0_arm64.whl +0 -0
- firehot-0.4.2.dev1/dist_clean/firehot-0.4.2.dev1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl +0 -0
- firehot-0.4.2.dev1/dist_clean/firehot-0.4.2.dev1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
- firehot-0.4.2.dev1/dist_clean/firehot-0.4.2.dev1-cp313-cp313-macosx_10_12_x86_64.whl +0 -0
- firehot-0.4.2.dev1/dist_clean/firehot-0.4.2.dev1-cp313-cp313-macosx_11_0_arm64.whl +0 -0
- firehot-0.4.2.dev1/dist_clean/firehot-0.4.2.dev1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl +0 -0
- firehot-0.4.2.dev1/dist_clean/firehot-0.4.2.dev1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
- firehot-0.4.2.dev1/firehot/__tests__/conftest.py +0 -35
- firehot-0.4.2.dev1/firehot/__tests__/embedded/__init__.py +0 -0
- firehot-0.4.2.dev1/firehot/__tests__/embedded/test_call_serializer.py +0 -95
- firehot-0.4.2.dev1/firehot/__tests__/embedded/test_child_entrypoint.py +0 -62
- firehot-0.4.2.dev1/firehot/__tests__/embedded/test_parent_entrypoint.py +0 -272
- firehot-0.4.2.dev1/firehot/__tests__/test_context.py +0 -47
- firehot-0.4.2.dev1/firehot/__tests__/test_environment.py +0 -74
- firehot-0.4.2.dev1/firehot/__tests__/test_naming.py +0 -210
- firehot-0.4.2.dev1/src/scripts.rs +0 -4
- firehot-0.4.2.dev1/uv.lock +0 -285
- {firehot-0.4.2.dev1 → firehot-0.5.2}/.DS_Store +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/.github/scripts/update_version.py +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/.github/workflows/ci-build.yml +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/.gitignore +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/README.md +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/demopackage/.python-version +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/demopackage/README.md +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/demopackage/demopackage/__init__.py +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/demopackage/demopackage/app.py +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/demopackage/demopackage/dep.py +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/demopackage/demopackage/test_hotreload.py +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/demopackage/external-package/.python-version +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/demopackage/external-package/README.md +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/demopackage/external-package/external_package/__init__.py +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/demopackage/external-package/external_package/mock_imports.py +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/demopackage/external-package/pyproject.toml +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/demopackage/external-package/uv.lock +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/demopackage/pyproject.toml +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/media/header.png +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/src/async_resolve.rs +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2/src}/firehot/__init__.py +0 -0
- {firehot-0.4.2.dev1/firehot/__tests__ → firehot-0.5.2/src/firehot/embedded}/__init__.py +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2/src}/firehot/embedded/call_serializer.py +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2/src}/firehot/embedded/child_entrypoint.py +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2/src}/firehot/embedded/types.py +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2/src}/firehot/py.typed +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/src/messages.rs +0 -0
- {firehot-0.4.2.dev1 → firehot-0.5.2}/src/test_utils/mod.rs +0 -0
|
@@ -6,6 +6,9 @@ on:
|
|
|
6
6
|
pull_request:
|
|
7
7
|
branches: [ main ]
|
|
8
8
|
|
|
9
|
+
env:
|
|
10
|
+
UV_VENV_CLEAR: "1"
|
|
11
|
+
|
|
9
12
|
jobs:
|
|
10
13
|
lint:
|
|
11
14
|
runs-on: ubuntu-latest
|
|
@@ -41,9 +44,6 @@ jobs:
|
|
|
41
44
|
with:
|
|
42
45
|
path: |
|
|
43
46
|
~/.cache/uv
|
|
44
|
-
.venv
|
|
45
|
-
*/*/venv
|
|
46
|
-
*/.venv
|
|
47
47
|
key: ${{ runner.os }}-uv-deps-${{ matrix.package }}-${{ hashFiles('**/pyproject.toml') }}
|
|
48
48
|
|
|
49
49
|
- name: Set up Rust
|
|
@@ -55,7 +55,7 @@ jobs:
|
|
|
55
55
|
|
|
56
56
|
- name: Create virtual environment
|
|
57
57
|
run: |
|
|
58
|
-
uv venv
|
|
58
|
+
uv venv --clear
|
|
59
59
|
echo "VIRTUAL_ENV=$PWD/.venv" >> $GITHUB_ENV
|
|
60
60
|
echo "$PWD/.venv/bin" >> $GITHUB_PATH
|
|
61
61
|
|
|
@@ -104,7 +104,7 @@ jobs:
|
|
|
104
104
|
|
|
105
105
|
- name: Create virtual environment
|
|
106
106
|
run: |
|
|
107
|
-
uv venv
|
|
107
|
+
uv venv --clear
|
|
108
108
|
echo "VIRTUAL_ENV=$PWD/.venv" >> $GITHUB_ENV
|
|
109
109
|
echo "$PWD/.venv/bin" >> $GITHUB_PATH
|
|
110
110
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.10
|