From de3b579833810eefce66aaf8b1fbad4c3c3f8b18 Mon Sep 17 00:00:00 2001 From: Milton Date: Wed, 17 May 2023 10:35:55 -0300 Subject: [PATCH] Delete remaining starknet-rs-py files --- Makefile | 3 --- docs/devnet_testing.md | 10 ---------- pyproject.toml | 16 ---------------- 3 files changed, 29 deletions(-) delete mode 100644 pyproject.toml diff --git a/Makefile b/Makefile index b2d11e647..78b91a99f 100644 --- a/Makefile +++ b/Makefile @@ -107,9 +107,6 @@ clippy: compile-cairo compile-starknet test: compile-cairo compile-starknet $(COMPILED_SIERRA_CONTRACTS) cargo test -test-py: compile-cairo compile-starknet - . starknet-venv/bin/activate && cargo test -p starknet-rs-py --no-default-features --features embedded-python - coverage: compile-cairo compile-starknet compile-abi $(COMPILED_SIERRA_CONTRACTS) cargo llvm-cov --ignore-filename-regex 'main.rs' cargo llvm-cov report --lcov --ignore-filename-regex 'main.rs' --output-path lcov.info diff --git a/docs/devnet_testing.md b/docs/devnet_testing.md index 012b64e73..b2012c117 100644 --- a/docs/devnet_testing.md +++ b/docs/devnet_testing.md @@ -26,13 +26,3 @@ cd starknet-devnet poetry run pytest -s -v test # To run all tests with verbose mode poetry run pytest test/ # To run a single test ``` - -# Workflow -In order to test how changes in the starknet codebase affect the `starknet-devnet`, you can install `starknet-rs-py` with -``` -maturin develop -``` -and then run the script `scripts/patch-devnet.sh` while in the devnet repo. -This will replace all uses of `starkware.starknet` with `starknet_rs_py`. - -**Note**: this assumes a devnet version of v0.4.6, as specified in _Installing dev dependencies_ diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index 83b640491..000000000 --- a/pyproject.toml +++ /dev/null @@ -1,16 +0,0 @@ -[project] -name = "starknet_rs_py" -version = "0.1.0" -requires-python = ">=3.7" -classifiers = [ - "Programming Language :: Rust", - "Programming Language :: Python :: Implementation :: CPython", - "Programming Language :: Python :: Implementation :: PyPy", -] - -[build-system] -requires = ["maturin>=0.14,<0.15"] -build-backend = "maturin" - -[tool.maturin] -manifest-path = "crates/starknet-rs-py/Cargo.toml"