Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge 1.1 into 2.0 #1207

Merged
merged 28 commits into from
Sep 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
6617d81
Enable CI workflows (#941)
thibault-martinez Jul 27, 2023
bbc8341
Simplify `StrongholdAdapterBuilder` (#940)
Jul 27, 2023
2a9a1bf
feat(cli): Add cli command to list wallet accounts (#950)
Alex6323 Jul 28, 2023
67cb327
chore(logging): change some debug logs to warnings and errors (#958)
Alex6323 Jul 28, 2023
83a8c12
feat(cli): adds hex version of address to `addresses` command (#960)
qrayven Jul 28, 2023
571baed
Return error on secret manager mismatch (#946)
Alex6323 Jul 29, 2023
35c8178
cli: add types and enumeration when listing Outputs (#955)
qrayven Jul 31, 2023
862cdfd
Add `get_or_create_account` (#971)
Aug 3, 2023
b8a06c4
Feat/cli: added mnemonic gen from console only (#983)
Aug 4, 2023
7c40a44
Fix wallet accounts example alias (#1022)
thibault-martinez Aug 16, 2023
af19a14
Allow selecting transactions by index (#1033)
Aug 17, 2023
6eb0b6a
Add lint check for examples (#1003)
qrayven Aug 18, 2023
60aed54
Add switch CLI command to change accounts (#1043)
Aug 18, 2023
3811833
Feat: Added Conflict Reasons (#1069)
Aug 23, 2023
a477d86
Merge branch 'develop' into merge-develop-1.1
thibault-martinez Aug 29, 2023
b45af40
Merge pull request #1102 from thibault-martinez/merge-develop-1.1
thibault-martinez Aug 30, 2023
f1a6ec5
Fix: foundry destroy example (#1087)
Aug 30, 2023
1be824f
Add python send wrapper methods (#1104)
Thoralf-M Aug 30, 2023
72f19a3
Add nodejs send wrapper methods (#1103)
Thoralf-M Aug 30, 2023
8c962dd
CLI: refactor print help (#1154)
thibault-martinez Sep 6, 2023
97d696a
Add IRC27 and IRC30 metadata utilities (#1160)
Sep 7, 2023
b56eec6
revert breaking change (#1178)
Sep 7, 2023
168e4a1
Merge branch 'develop' into merge-develop-1.1-3
thibault-martinez Sep 8, 2023
b78019e
Merge pull request #1184
thibault-martinez Sep 8, 2023
c3c0cf8
Use IRC metadata in examples (#1180)
Sep 8, 2023
d21b561
Merge branch '1.1' into merge-1.1-into-2.0
thibault-martinez Sep 12, 2023
7b40245
Fix security audits
thibault-martinez Sep 12, 2023
1880194
Merge branch '2.0' into merge-1.1-into-2.0
Sep 12, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions .github/workflows/bindings-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ concurrency:

jobs:
lint:
name: PEP8 style check
name: Python PEP8 format
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand All @@ -63,12 +63,13 @@ jobs:
python3 -m pip install --upgrade setuptools pip wheel
python3 -m pip install tox-gh-actions

- name: Run Tox
- name: Run tox format check
working-directory: bindings/python
run: tox -e lint
run: tox -e format


test:
name: Test
name: Linter & Tests
needs: lint
if: ${{ ! github.event.schedule }}
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -111,7 +112,13 @@ jobs:
sudo apt-get update
sudo apt-get install libudev-dev libusb-1.0-0-dev

- name: Run linter for examples
if: ${{ startsWith(matrix.os, 'ubuntu-latest') }}
working-directory: bindings/python
run: tox -e lint-examples

# TODO temporarily disabled https://github.com/iotaledger/iota-sdk/issues/647
# - name: Run Tox
# - name: Run tests
# working-directory: bindings/python
# run: tox

Loading
Loading