Skip to content

Commit 53810dd

Browse files
committed
Merge branch 'fix/hdwallet3'; v14.0.0
2 parents fa02f5f + d51e030 commit 53810dd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+1943
-1265
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,21 @@ on:
88
branches:
99
- master
1010
- feature-**
11+
- feature/**
1112
- fix-**
13+
- fix/**
1214
pull_request:
1315
branches:
1416
- master
1517

1618
jobs:
1719
build:
1820

19-
runs-on: ubuntu-24.04
21+
runs-on: ubuntu-25.04
2022
strategy:
2123
matrix:
2224
# Requires Python3 w/ Type Annotations
23-
python-version: ['3.9', '3.10', '3.11', '3.12']
25+
python-version: ['3.10', '3.11', '3.12', '3.13']
2426

2527
steps:
2628
- name: Checkout repository code
@@ -37,7 +39,7 @@ jobs:
3739
python-version: ${{ matrix.python-version }}
3840
- name: Install dependencies
3941
run: |
40-
python3 -m pip install .[all,tests]
42+
python3 -m pip install .[gui,serial,wallet,invoice,tests]
4143
- name: Lint with flake8
4244
run: |
4345
make analyze

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@master
2121
- name: Set up Python
22-
uses: actions/setup-python@v4
22+
uses: actions/setup-python@master
2323
- name: Build
2424
run: |
25-
python -m pip install -r requirements-dev.txt
25+
python -m pip install .[dev]
2626
python -m build .
2727
- name: Publish package distributions to PyPI
2828
uses: pypa/gh-action-pypi-publish@release/v1

App.org

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,8 @@ cryptocurrency accounts related to the Seed.
230230

231231
** Netcoins.app
232232

233-
In Canada, one of the more highly regulatory-compliant cryptocurrency exchanges is [[https://netcoins.app/r?ac=5YO1MZ][Netcoins.app
234-
(referral code: 5YO1MZ)]]; sign up with this referral link, and we both get some benefits.
233+
In Canada, one of the more highly regulatory-compliant cryptocurrency exchanges is [[https://netcoins.app/invite/K4K97DY][Netcoins.app]]
234+
sign up with this referral link, and we both get some benefits.
235235

236236
They have higher than typical Interac e-transfer limits, which is very nice. However, they don't
237237
support a wide range of cryptocurrencies; presently, only BTC, ETH, XRP, LTC, BCH, USDC, and a

dkim-setup renamed to DKIM-setup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
# and we do not want people using the same email address, or other people's
6767
# email addresses.
6868

69-
KTYPE="rsa" # "ed25519" # but not well supported yet; even by Cloudflare
69+
KTYPE="ed25519" # "rsa" # Ed25519 is not well supported yet; even by Cloudflare?
7070

7171
COMPANY=""
7272
while [ "${COMPANY}" == "" ]; do

0 commit comments

Comments
 (0)