Skip to content

Commit 4f7e223

Browse files
committed
fix(bitstring): Restricted bitstring dependency to fix 32-bit compatibility
1 parent 9b24215 commit 4f7e223

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/build_esptool.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ jobs:
9292
if: startsWith(github.ref, 'refs/tags/') && !(contains(github.ref_name, 'dev'))
9393
needs: build-esptool-binaries
9494
runs-on: ubuntu-latest
95+
env:
96+
PIP_EXTRA_INDEX_URL: "https://dl.espressif.com/pypi"
9597
permissions:
9698
contents: write
9799
steps:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
dynamic = ["version", "scripts"]
3434

3535
dependencies = [
36-
"bitstring>=3.1.6",
36+
"bitstring>=3.1.6,!=4.2.0",
3737
"cryptography>=2.1.4",
3838
"ecdsa>=0.16.0",
3939
"pyserial>=3.3",

0 commit comments

Comments
 (0)