Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
eb04f9064c | ||
|
|
69107e2333 |
4
.github/workflows/python-build.yml
vendored
4
.github/workflows/python-build.yml
vendored
@@ -25,7 +25,7 @@ jobs:
|
||||
run: pip install maturin==1.8.2
|
||||
|
||||
- name: Build Python packages
|
||||
run: maturin build --release -m pyadb_client/Cargo.toml --compatibility manylinux_2_25 --auditwheel=skip
|
||||
run: maturin build --sdist --release -m pyadb_client/Cargo.toml
|
||||
|
||||
publish-python-packages:
|
||||
runs-on: ubuntu-latest
|
||||
@@ -39,7 +39,7 @@ jobs:
|
||||
run: pip install maturin==1.8.2
|
||||
|
||||
- name: Publish Python packages
|
||||
run: maturin publish -m pyadb_client/Cargo.toml --non-interactive --compatibility manylinux_2_25 --auditwheel=skip
|
||||
run: maturin publish -m pyadb_client/Cargo.toml --non-interactive
|
||||
env:
|
||||
MATURIN_PYPI_TOKEN: ${{ secrets.MATURIN_PYPI_TOKEN }}
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ homepage = "https://github.com/cocool97/adb_client"
|
||||
keywords = ["adb", "android", "tcp", "usb"]
|
||||
license = "MIT"
|
||||
repository = "https://github.com/cocool97/adb_client"
|
||||
version = "2.1.6"
|
||||
version = "2.1.7"
|
||||
|
||||
# To build locally when working on a new release
|
||||
[patch.crates-io]
|
||||
|
||||
@@ -1,26 +1,30 @@
|
||||
[package]
|
||||
name = "pyadb_client"
|
||||
description = "Python wrapper for adb_client library"
|
||||
authors.workspace = true
|
||||
description = "Python wrapper for adb_client library"
|
||||
edition.workspace = true
|
||||
homepage.workspace = true
|
||||
keywords.workspace = true
|
||||
license.workspace = true
|
||||
name = "pyadb_client"
|
||||
readme = "README.md"
|
||||
repository.workspace = true
|
||||
version.workspace = true
|
||||
readme = "README.md"
|
||||
|
||||
[lib]
|
||||
name = "pyadb_client"
|
||||
crate-type = ["cdylib", "rlib"]
|
||||
name = "pyadb_client"
|
||||
|
||||
[[bin]]
|
||||
name = "stub_gen"
|
||||
doc = false
|
||||
name = "stub_gen"
|
||||
|
||||
[dependencies]
|
||||
adb_client = { path = "../adb_client" }
|
||||
anyhow = { version = "1.0.95" }
|
||||
adb_client = { version = "2.1.5" }
|
||||
pyo3 = { version = "0.23.4", features = ["extension-module", "anyhow", "abi3-py37"] }
|
||||
pyo3 = { version = "0.23.4", features = [
|
||||
"abi3-py37",
|
||||
"anyhow",
|
||||
"extension-module",
|
||||
] }
|
||||
pyo3-stub-gen = "0.7.0"
|
||||
pyo3-stub-gen-derive = "0.7.0"
|
||||
pyo3-stub-gen-derive = "0.7.0"
|
||||
|
||||
Reference in New Issue
Block a user