Skip to content

Commit 4407fa7

Browse files
Fix Python tests
1 parent d82053e commit 4407fa7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docs/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- Change name to `egglog` from `egg-smol`, to mirror [upstream change](https://github.com/egraphs-good/egglog/commit/9484242f025f6c2adb6f29d75a45dd77b0eaad57). Note that all previous versions are published under the `egg-smol` PyPi package while this and later are under `egglog`.
6+
57
## 0.3.1 (2023-05-02)
68

79
- Fix bug calling methods on paramterized types (e.g. `Map[i64, i64].empty().insert(i64(0), i64(1))`)

python/tests/test_bindings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def get_egglog_folder() -> pathlib.Path:
1818
check=True,
1919
)
2020
metadata = json.loads(metadata_process.stdout)
21-
(egglog_package,) = [package for package in metadata["packages"] if package["name"] == "egglog"]
21+
(egglog_package,) = [package for package in metadata["packages"] if package["name"] == "egg-smol"]
2222
return pathlib.Path(egglog_package["manifest_path"]).parent
2323

2424

0 commit comments

Comments
 (0)