egglog 11.1.0__tar.gz → 11.2.0__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.
Potentially problematic release.
This version of egglog might be problematic. Click here for more details.
- {egglog-11.1.0 → egglog-11.2.0}/.github/workflows/CI.yml +1 -1
- {egglog-11.1.0 → egglog-11.2.0}/.github/workflows/version.yml +5 -5
- {egglog-11.1.0 → egglog-11.2.0}/.gitignore +1 -0
- {egglog-11.1.0 → egglog-11.2.0}/.pre-commit-config.yaml +2 -2
- {egglog-11.1.0 → egglog-11.2.0}/Cargo.lock +306 -356
- {egglog-11.1.0 → egglog-11.2.0}/Cargo.toml +12 -11
- {egglog-11.1.0 → egglog-11.2.0}/PKG-INFO +1 -1
- {egglog-11.1.0 → egglog-11.2.0}/docs/changelog.md +12 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/reference/egglog-translation.md +53 -11
- {egglog-11.1.0 → egglog-11.2.0}/docs/reference/python-integration.md +4 -3
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/bindings.pyi +96 -21
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/declarations.py +9 -1
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/egraph.py +111 -35
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/egraph_state.py +49 -6
- egglog-11.2.0/python/egglog/examples/jointree.py +67 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/exp/array_api.py +1 -1
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/pretty.py +13 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/runtime.py +30 -3
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/test_bindings.py +7 -6
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/test_high_level.py +133 -5
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/test_py_object_sort.py +8 -6
- egglog-11.2.0/rust-toolchain.toml +2 -0
- {egglog-11.1.0 → egglog-11.2.0}/src/conversions.rs +104 -30
- {egglog-11.1.0 → egglog-11.2.0}/src/egraph.rs +17 -32
- {egglog-11.1.0 → egglog-11.2.0}/src/lib.rs +2 -1
- {egglog-11.1.0 → egglog-11.2.0}/src/py_object_sort.rs +33 -69
- {egglog-11.1.0 → egglog-11.2.0}/src/serialize.rs +4 -0
- {egglog-11.1.0 → egglog-11.2.0}/src/utils.rs +2 -2
- {egglog-11.1.0 → egglog-11.2.0}/uv.lock +783 -713
- egglog-11.1.0/rust-toolchain.toml +0 -2
- {egglog-11.1.0 → egglog-11.2.0}/.cargo/config.toml +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/.github/dependabot.yml +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/.github/workflows/update-changelog.yml +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/.python-version +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/.readthedocs.yaml +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/CITATION.cff +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/LICENSE +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/Makefile +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/README.md +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/conftest.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/.gitignore +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/_templates/comments.html +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/conf.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/environment.yml +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/explanation/.gitignore +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/explanation/2023_07_presentation.ipynb +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/explanation/2023_11_09_portland_state.ipynb +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/explanation/2023_11_17_pytensor.ipynb +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/explanation/2023_11_pydata_lightning_talk.ipynb +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/explanation/2023_12_02_congruence_closure-1.png +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/explanation/2023_12_02_congruence_closure-2.png +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/explanation/2023_12_02_congruence_closure.md +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/explanation/2024_03_17_community_talk.ipynb +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/explanation/2024_03_17_map.svg +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/explanation/big_graph.svg +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/explanation/define_and_define.md +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/explanation/ecosystem-graph.png +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/explanation/egg.png +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/explanation/indexing_pushdown.ipynb +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/explanation/moa.png +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/explanation/optional_values.md +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/explanation/pldi_2023_presentation.ipynb +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/explanation.md +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/how-to-guides.md +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/index.md +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/reference/bindings.md +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/reference/contributing.md +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/reference/high-level.md +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/reference/usage.md +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/reference.md +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/tutorials/getting-started.ipynb +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/tutorials/screenshot-1.png +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/tutorials/screenshot-2.png +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/tutorials/sklearn.ipynb +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/docs/tutorials.md +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/modify_changelog.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/pyproject.toml +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/__init__.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/builtins.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/config.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/conversion.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/deconstruct.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/examples/README.rst +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/examples/__init__.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/examples/bignum.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/examples/bool.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/examples/eqsat_basic.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/examples/fib.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/examples/higher_order_functions.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/examples/lambda_.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/examples/matrix.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/examples/multiset.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/examples/ndarrays.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/examples/resolution.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/examples/schedule_demo.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/exp/__init__.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/exp/array_api_jit.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/exp/array_api_loopnest.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/exp/array_api_numba.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/exp/array_api_program_gen.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/exp/program_gen.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/exp/siu_examples.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/ipython_magic.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/py.typed +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/thunk.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/type_constraint_solver.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/version_compat.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/visualizer.css +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/visualizer.js +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/egglog/visualizer_widget.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/__snapshots__/test_array_api/TestLoopNest.test_index_codegen[code].py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/__snapshots__/test_array_api/TestLoopNest.test_index_codegen[expr].py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/__snapshots__/test_array_api/test_jit[add][code].py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/__snapshots__/test_array_api/test_jit[add][expr].py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/__snapshots__/test_array_api/test_jit[add][initial_expr].py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/__snapshots__/test_array_api/test_jit[lda][code].py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/__snapshots__/test_array_api/test_jit[lda][expr].py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/__snapshots__/test_array_api/test_jit[lda][initial_expr].py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/__snapshots__/test_array_api/test_jit[tuple][code].py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/__snapshots__/test_array_api/test_jit[tuple][expr].py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/__snapshots__/test_array_api/test_jit[tuple][initial_expr].py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/__snapshots__/test_array_api/test_program_compile[tuple][code].py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/__snapshots__/test_array_api/test_program_compile[tuple][expr].py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/__snapshots__/test_bindings/TestEGraph.test_parse_program.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/__snapshots__/test_program_gen/test_to_string.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/__snapshots__/test_program_gen/test_to_string_function_three.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/conftest.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/test_array_api.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/test_convert.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/test_deconstruct.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/test_modify_changelog.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/test_no_import_star.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/test_pretty.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/test_program_gen.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/test_runtime.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/test_type_constraint_solver.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/test_typing.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/python/tests/test_unstable_fn.py +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/src/error.rs +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/src/termdag.rs +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/stubtest_allow +0 -0
- {egglog-11.1.0 → egglog-11.2.0}/test-data/unit/check-high-level.test +0 -0
|
@@ -68,7 +68,7 @@ jobs:
|
|
|
68
68
|
- run: |
|
|
69
69
|
export UV_PROJECT_ENVIRONMENT="${pythonLocation}"
|
|
70
70
|
uv sync --extra test --locked
|
|
71
|
-
- uses: CodSpeedHQ/action@v3.8.
|
|
71
|
+
- uses: CodSpeedHQ/action@v3.8.1
|
|
72
72
|
with:
|
|
73
73
|
token: ${{ secrets.CODSPEED_TOKEN }}
|
|
74
74
|
# allow updating snapshots due to indeterministic benchmarks
|
|
@@ -65,7 +65,7 @@ jobs:
|
|
|
65
65
|
ref: version-${{ needs.bump.outputs.version }}
|
|
66
66
|
- uses: actions/checkout@v5
|
|
67
67
|
if: ${{ needs.bump.result == 'skipped' }}
|
|
68
|
-
- uses: PyO3/maturin-action@v1.49.
|
|
68
|
+
- uses: PyO3/maturin-action@v1.49.4
|
|
69
69
|
with:
|
|
70
70
|
target: ${{ matrix.target }}
|
|
71
71
|
manylinux: auto
|
|
@@ -91,7 +91,7 @@ jobs:
|
|
|
91
91
|
if: ${{ needs.bump.result == 'skipped' }}
|
|
92
92
|
- name: Setup QEMU
|
|
93
93
|
uses: docker/setup-qemu-action@v3
|
|
94
|
-
- uses: PyO3/maturin-action@v1.49.
|
|
94
|
+
- uses: PyO3/maturin-action@v1.49.4
|
|
95
95
|
with:
|
|
96
96
|
manylinux: auto
|
|
97
97
|
command: build
|
|
@@ -114,7 +114,7 @@ jobs:
|
|
|
114
114
|
ref: version-${{ needs.bump.outputs.version }}
|
|
115
115
|
- uses: actions/checkout@v5
|
|
116
116
|
if: ${{ needs.bump.result == 'skipped' }}
|
|
117
|
-
- uses: PyO3/maturin-action@v1.49.
|
|
117
|
+
- uses: PyO3/maturin-action@v1.49.4
|
|
118
118
|
with:
|
|
119
119
|
command: build
|
|
120
120
|
args: --release -o dist --find-interpreter
|
|
@@ -136,7 +136,7 @@ jobs:
|
|
|
136
136
|
ref: version-${{ needs.bump.outputs.version }}
|
|
137
137
|
- uses: actions/checkout@v5
|
|
138
138
|
if: ${{ needs.bump.result == 'skipped' }}
|
|
139
|
-
- uses: PyO3/maturin-action@v1.49.
|
|
139
|
+
- uses: PyO3/maturin-action@v1.49.4
|
|
140
140
|
with:
|
|
141
141
|
command: build
|
|
142
142
|
target: universal2-apple-darwin
|
|
@@ -158,7 +158,7 @@ jobs:
|
|
|
158
158
|
pattern: wheels-*
|
|
159
159
|
merge-multiple: true
|
|
160
160
|
- name: Publish to PyPI
|
|
161
|
-
uses: PyO3/maturin-action@v1.49.
|
|
161
|
+
uses: PyO3/maturin-action@v1.49.4
|
|
162
162
|
env:
|
|
163
163
|
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
|
|
164
164
|
with:
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
exclude: ^python/tests/__snapshots__/
|
|
2
2
|
repos:
|
|
3
3
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
4
|
-
rev: v0.12.
|
|
4
|
+
rev: v0.12.11
|
|
5
5
|
hooks:
|
|
6
6
|
- id: ruff-check
|
|
7
7
|
args: [--fix]
|
|
8
8
|
- id: ruff-format
|
|
9
9
|
- repo: https://github.com/astral-sh/uv-pre-commit
|
|
10
|
-
rev: 0.8.
|
|
10
|
+
rev: 0.8.14
|
|
11
11
|
hooks:
|
|
12
12
|
- id: uv-lock
|