[fix] Review corrections

This commit is contained in:
Lucas PASCAL
2023-08-29 10:55:12 +02:00
parent 72586268fa
commit 91bb889ced
3 changed files with 6 additions and 6 deletions

View File

@@ -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:

View File

@@ -1 +1 @@
include src/ledger_app_clients/ethereum/keychain/*
include src/ledger_app_clients/ethereum/keychain/*

View File

@@ -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 .
```