Skip to content

Commit

Permalink
build: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mtshiba committed Dec 24, 2024
1 parent 088c22a commit c985e79
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 42 deletions.
78 changes: 39 additions & 39 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ edition = "2021"
repository = "https://github.com/mtshiba/pylyzer"

[workspace.dependencies]
erg_common = { version = "0.6.49-nightly.4", features = ["py_compat", "els"] }
erg_compiler = { version = "0.6.49-nightly.4", features = ["py_compat", "els"] }
els = { version = "0.1.61-nightly.4", features = ["py_compat"] }
erg_common = { version = "0.6.49", features = ["py_compat", "els"] }
erg_compiler = { version = "0.6.49", features = ["py_compat", "els"] }
els = { version = "0.1.61", features = ["py_compat"] }
# rustpython-parser = { version = "0.3.0", features = ["all-nodes-with-ranges", "location"] }
# rustpython-ast = { version = "0.3.0", features = ["all-nodes-with-ranges", "location"] }
rustpython-parser = { git = "https://github.com/RustPython/Parser", version = "0.4.0", features = ["all-nodes-with-ranges", "location"] }
Expand Down
5 changes: 5 additions & 0 deletions tests/widening.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,8 @@
b = True
if True:
b = "a" # ERR

counter = 100 # counter: Literal[100]
while counter > 0:
counter -= 1 # counter: Int
counter -= 1.0 # counter: Float

0 comments on commit c985e79

Please sign in to comment.