build: update version (v0.0.53)

This commit is contained in:
Shunsuke Shibayama 2024-04-30 00:13:56 +09:00
parent b35a26bba4
commit f24a10f30d
3 changed files with 5 additions and 10 deletions

4
Cargo.lock generated
View File

@ -536,7 +536,7 @@ dependencies = [
[[package]]
name = "py2erg"
version = "0.0.52"
version = "0.0.53"
dependencies = [
"erg_common",
"erg_compiler",
@ -546,7 +546,7 @@ dependencies = [
[[package]]
name = "pylyzer"
version = "0.0.52"
version = "0.0.53"
dependencies = [
"els",
"erg_common",

View File

@ -15,7 +15,7 @@ members = [
]
[workspace.package]
version = "0.0.52"
version = "0.0.53"
authors = ["Shunsuke Shibayama <sbym1346@gmail.com>"]
license = "MIT OR Apache-2.0"
edition = "2021"
@ -49,7 +49,7 @@ erg_common = { workspace = true }
els = { workspace = true }
rustpython-parser = { workspace = true }
rustpython-ast = { workspace = true }
py2erg = { version = "0.0.52", path = "./crates/py2erg" }
py2erg = { version = "0.0.53", path = "./crates/py2erg" }
[lib]
path = "src/lib.rs"

View File

@ -22,16 +22,11 @@ pip install pylyzer
cargo install pylyzer --locked
```
> [!WARNING]
> Currently, the stable version of pylyzer cannot be installed with rustc >= 1.76.0 due to a dependency problem.
> Ref: <https://github.com/RustPython/Parser/issues/114>
> You can install the latest version from the source.
### build from source
```bash
git clone https://github.com/mtshiba/pylyzer.git
cargo install --path .
cargo install --path . --locked
```
Make sure that `cargo/rustc` is up-to-date, as pylyzer may be written with the latest language features.