diff --git a/.github/workflows/python-client.yml b/.github/workflows/python-client.yml index 8a063a4..984d51c 100644 --- a/.github/workflows/python-client.yml +++ b/.github/workflows/python-client.yml @@ -37,7 +37,6 @@ jobs: packaging: needs: [lint, mypy] - if: github.event_name == 'push' name: Build, test and deploy the Python package uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_pypi_deployment.yml@v1 with: diff --git a/client/MANIFEST.in b/client/MANIFEST.in index 65272bf..98060d1 100644 --- a/client/MANIFEST.in +++ b/client/MANIFEST.in @@ -1 +1 @@ -include src/ledger_app_clients/ethereum/keychain/* \ No newline at end of file +include src/ledger_app_clients/ethereum/keychain/* diff --git a/client/README.md b/client/README.md index 37da79a..13c5a4c 100644 --- a/client/README.md +++ b/client/README.md @@ -1,6 +1,6 @@ -# Ethereum app Python client +# Python client for the Ledger Ethereum application -This package allows to communicate with the Ethereum application, either on a +This package allows to communicate with the Ledger Ethereum application, either on a real device, or emulated on Speculos. ## Installation @@ -9,11 +9,13 @@ This package is deployed: - on `pypi.org` for the stable version. This version will work with the application available on the `master` branch. + ```bash pip install ledger_app_clients.ethereum ``` - on `test.pypi.org` for the rolling release. This version will work with the - application code on the `develop` branch. + application available on the `develop` branch. + ```bash pip install --extra-index-url https://test.pypi.org/simple/ ledger_app_clients.ethereum ``` @@ -23,6 +25,5 @@ This package is deployed: You can install the client from this repo: ```bash -cd client/ pip install . ```