mirror of https://github.com/mtshiba/pylyzer
build: update version (v0.0.53)
This commit is contained in:
parent
b35a26bba4
commit
f24a10f30d
|
|
@ -536,7 +536,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "py2erg"
|
name = "py2erg"
|
||||||
version = "0.0.52"
|
version = "0.0.53"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"erg_common",
|
"erg_common",
|
||||||
"erg_compiler",
|
"erg_compiler",
|
||||||
|
|
@ -546,7 +546,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pylyzer"
|
name = "pylyzer"
|
||||||
version = "0.0.52"
|
version = "0.0.53"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"els",
|
"els",
|
||||||
"erg_common",
|
"erg_common",
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ members = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "0.0.52"
|
version = "0.0.53"
|
||||||
authors = ["Shunsuke Shibayama <sbym1346@gmail.com>"]
|
authors = ["Shunsuke Shibayama <sbym1346@gmail.com>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
@ -49,7 +49,7 @@ erg_common = { workspace = true }
|
||||||
els = { workspace = true }
|
els = { workspace = true }
|
||||||
rustpython-parser = { workspace = true }
|
rustpython-parser = { workspace = true }
|
||||||
rustpython-ast = { workspace = true }
|
rustpython-ast = { workspace = true }
|
||||||
py2erg = { version = "0.0.52", path = "./crates/py2erg" }
|
py2erg = { version = "0.0.53", path = "./crates/py2erg" }
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
||||||
|
|
|
||||||
|
|
@ -22,16 +22,11 @@ pip install pylyzer
|
||||||
cargo install pylyzer --locked
|
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
|
### build from source
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/mtshiba/pylyzer.git
|
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.
|
Make sure that `cargo/rustc` is up-to-date, as pylyzer may be written with the latest language features.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue