From 48051c20ed7f459b36538c3a83627c1091294b14 Mon Sep 17 00:00:00 2001 From: Benjamin Bolte Date: Fri, 1 Nov 2024 11:48:14 -0700 Subject: [PATCH] build fixes --- .github/workflows/publish.yml | 3 +-- actuator/bindings.pyi | 1 - setup.py | 2 -- 3 files changed, 1 insertion(+), 5 deletions(-) delete mode 120000 actuator/bindings.pyi diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 09dc6c4..a24a7ad 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -125,5 +125,4 @@ jobs: env: CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} run: | - cd actuator/robstride - cargo publish + cargo publish -p robstride diff --git a/actuator/bindings.pyi b/actuator/bindings.pyi deleted file mode 120000 index 99c2419..0000000 --- a/actuator/bindings.pyi +++ /dev/null @@ -1 +0,0 @@ -bindings/bindings.pyi \ No newline at end of file diff --git a/setup.py b/setup.py index ddca7a9..95308c0 100644 --- a/setup.py +++ b/setup.py @@ -29,9 +29,7 @@ class RustBuildExt(build_ext): def run(self) -> None: - # Run the stub generator subprocess.run(["cargo", "run", "--bin", "stub_gen"], check=True) - # Call the original build_ext command super().run()