Skip to content

Commit 98815a9

Browse files
Compiling with local egg-smol
1 parent 39227b3 commit 98815a9

21 files changed

+642
-1099
lines changed

Cargo.lock

Lines changed: 31 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ crate-type = ["cdylib"]
1111
[dependencies]
1212
# Use unreleased version to depend on signature improvements https://github.com/PyO3/pyo3/pull/2702
1313
pyo3 = { version = "0.18.1", features = ["extension-module"] }
14-
egg-smol = { git = "https://github.com/mwillsey/egg-smol", rev = "08a6e8fecdb77e6ba72a1b1d9ff4aff33229912c" }
14+
# egg-smol = { git = "https://github.com/mwillsey/egg-smol", rev = "6f2633a5fa379487fb389b80fc1225866f8b8c1a" }
15+
egg-smol = { path = "../egg-smol" }
1516
pyo3-log = "0.8.1"
1617
log = "0.4.17"
1718
lalrpop-util = { version = "0.19.8", features = ["lexer"] }
19+
ordered-float = "3.4"
1820

1921
[package.metadata.maturin]
2022
name = "egg_smol.bindings"

docs/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
- Upgrade `egg-smol` from `08a6e8fecdb77e6ba72a1b1d9ff4aff33229912c` to `6f2633a5fa379487fb389b80fc1225866f8b8c1a`.
6+
37
## 0.2.0 (2023-03-27)
48

59
This release adds support for a high level API for e-graphs.

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ docs = [
4242
]
4343

4444

45+
[tool.black]
46+
line-length = 120
47+
4548
[tool.isort]
4649
profile = "black"
4750
skip_gitignore = true
@@ -62,3 +65,4 @@ python-source = "python"
6265
addopts = ["--import-mode=importlib"]
6366
testpaths = ["python"]
6467
python_files = ["test_*.py", "test.py"]
68+
markers = ["slow: marks tests as slow (deselect with '-m \"not slow\"')"]

0 commit comments

Comments
 (0)