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

[Build] Update build reqs #72

Merged
merged 1 commit into from
Aug 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
14 changes: 11 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:

- name: Install Dependencies
run: |
pip install wheel==0.38.4
pip install pip==24.0
pip install wheel==0.35.0
pip install setuptools==53.0.0
pip install -r requirements.txt
pip install importlib-metadata==4.13.0
pip install flake8==3.8.4
Expand Down Expand Up @@ -51,7 +53,7 @@ jobs:
packages: libusb-1.0-0-dev libudev-dev

- name: macOS
os: macos-11
os: macos-12
cachepath: ~/Library/Caches/pip

- name: Windows
Expand All @@ -78,7 +80,13 @@ jobs:
sudo apt-get update
sudo apt-get install --no-install-recommends --no-upgrade -qq ${{ matrix.config.packages }}
fi
pip install wheel==0.38.4
if [[ ${{ matrix.config.os }} = windows* ]]; then
python.exe -m pip install pip==24.0
else
pip install pip==24.0
fi
pip install wheel==0.35.0
pip install setuptools==53.0.0
pip install -r requirements.txt
pip install pyinstaller
- name: Build
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
wheel==0.35.0
setuptools==53.0.0
python-bitcoinrpc==1.0
bitcoin==1.1.42
btchip-python==0.1.27
trezor==0.11.1
trezor==0.11.5
PyQt5>=5.15.10
requests==2.32.2
simplejson==3.19.2
ecdsa==0.19.0
wheel==0.38.1
setuptools==69.5.1