From f24a10f30d88ac640fa1195cacfc3b1d1597f400 Mon Sep 17 00:00:00 2001 From: Shunsuke Shibayama Date: Tue, 30 Apr 2024 00:13:56 +0900 Subject: [PATCH] build: update version (v0.0.53) --- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- README.md | 7 +------ 3 files changed, 5 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index aeb053d..49986d2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index b97822b..6b7ffb7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ members = [ ] [workspace.package] -version = "0.0.52" +version = "0.0.53" authors = ["Shunsuke Shibayama "] 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" diff --git a/README.md b/README.md index dd2ae1a..f112b57 100644 --- a/README.md +++ b/README.md @@ -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: -> 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.