mirror of https://github.com/astral-sh/ruff
Minor fixes to Maturin packaging
This commit is contained in:
parent
201ccc83b1
commit
5378c85697
|
|
@ -1493,7 +1493,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "rust-python-linter"
|
||||
version = "0.0.1"
|
||||
version = "0.0.4"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"bincode",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "rust-python-linter"
|
||||
version = "0.0.1"
|
||||
version = "0.0.4"
|
||||
edition = "2021"
|
||||
|
||||
[lib]
|
||||
|
|
|
|||
|
|
@ -52,5 +52,6 @@ cargo run resources/test/src
|
|||
`rust-python-linter` is released for Python using [`maturin`](https://github.com/PyO3/maturin):
|
||||
|
||||
```shell
|
||||
maturin publish
|
||||
maturin publish --skip-existing --target x86_64-apple-darwin
|
||||
maturin publish --skip-existing --target aarch64-apple-darwin
|
||||
```
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
[build-system]
|
||||
requires = ["maturin>=0.13,<0.14"]
|
||||
build-backend = "maturin"
|
||||
|
||||
[tool.maturin]
|
||||
bindings = "bin"
|
||||
|
|
|
|||
Loading…
Reference in New Issue