Skip to content

Commit c6db1bc

Browse files
Force versioning of esptool to 4.8.1
1 parent f76f27a commit c6db1bc

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/build-linux-arm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
# Setup python
3636
- name: System Setup
3737
run: |
38-
pip install pyinstaller pyqt5 darkdetect argparse intelhex esptool mpremote requests psutil
38+
pip install pyinstaller pyqt5 darkdetect argparse intelhex esptool==4.8.1 mpremote requests psutil
3939
4040
# Fetch and build the teensy_loader_cli executable for Linux
4141
- name: Fetch Teensy Loader CLI

.github/workflows/build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
# Setup python
4040
- name: System Setup
4141
run: |
42-
pip install pyinstaller pyqt5 darkdetect argparse intelhex esptool mpremote requests psutil
42+
pip install pyinstaller pyqt5 darkdetect argparse intelhex esptool==4.8.1 mpremote requests psutil
4343
4444
# Fetch and build the teensy_loader_cli executable for Linux
4545
- name: Fetch Teensy Loader CLI

.github/workflows/build-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
# Setup python
4040
- name: System Setup
4141
run: |
42-
pip install pyinstaller Pillow pyqt5 darkdetect argparse intelhex esptool mpremote requests psutil
42+
pip install pyinstaller Pillow pyqt5 darkdetect argparse intelhex esptool==4.8.1 mpremote requests psutil
4343
brew install create-dmg
4444
4545
# Fetch and build the teensy_loader_cli executable for Mac

.github/workflows/build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
# Setup python
4040
- name: System Setup
4141
run: |
42-
pip install pyinstaller pyqt5 darkdetect argparse intelhex esptool mpremote requests psutil
42+
pip install pyinstaller pyqt5 darkdetect argparse intelhex esptool==4.8.1 mpremote requests psutil
4343
4444
# Setup MSYS2 for windows make of the teensy_loader_cli executable
4545
- uses: msys2/setup-msys2@v2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def get_version(rel_path: str) -> str:
6060
else:
6161
print("Unknown OS. Teensy loader will not be supported for this installation.")
6262

63-
install_deps = ['darkdetect', 'argparse', 'intelhex', 'esptool', 'mpremote', 'requests', 'psutil']
63+
install_deps = ['darkdetect', 'argparse', 'intelhex', 'esptool==4.8.1', 'mpremote', 'requests', 'psutil']
6464

6565
# Raspberry Pi needs python3-pyqt5 and python3-pyqt5.qtserialport
6666
# which can only be installed with apt-get

0 commit comments

Comments
 (0)