-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add diff testing with python VM on fibonacci * chore: remove TODO comment * chore: bump cairo-lang deps in poetry * chore: bump poetry.lock * chore: bump bun-types version * feat: update tests.yml for caching and --no-root * chore: use modern installer in poetry config tests.yml Github Action * chore: downgrade GH Action tests.yml to Python 3.9 * chore: downgrade poetry to python 3.9 * chore: trunk fmt * test: add program parsing to diff testing test for clarity * test: export diff tests to a dedicated suite * chore: upgrade to python3.10 * fix: use quote to specify 3.10 * chore: make poetry cache dependend of python version * chore: remove run config and comments * fix: export buffer for buffer and memory * fix: relocate memory in diff testing * dev: cast ArrayBuffer to Buffer for type correctness * fix: add offset parameter to export any memory start address * chore: enforce camelCase
- Loading branch information
Showing
7 changed files
with
1,282 additions
and
1,070 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
"author": "Clément Walter <[email protected]>", | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"bun-types": "^1.0.2", | ||
"bun-types": "^1.1.12", | ||
"typescript": "^5.2.2" | ||
}, | ||
"prettier": { | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ authors = ["Gregory Edison <[email protected]>"] | |
readme = "README.md" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.11" | ||
cairo-lang = "^0.12.2" | ||
python = "^3.10" | ||
cairo-lang = "^0.13.1" | ||
|
||
|
||
[build-system] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters