Skip to content

Commit

Permalink
the problem was blinka was including numpy in its dependencies, and t…
Browse files Browse the repository at this point in the history
…his was causing a non-compatible numpy to be installed on the pis; this change occurred recently in blinka (a few weeks ago). The issue is _not_ related to numpy 2.0.
  • Loading branch information
CamDavidsonPilon committed Jul 5, 2024
1 parent fdcfd16 commit cfd1b90
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### 24.7.5 & 24.7.6
### 24.7.5 & 24.7.6 & 24.7.7

Hotfix release for 24.7.3. This pins numpy to be less than 2.0 🫤

Expand Down
2 changes: 1 addition & 1 deletion pioreactor/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Append ".dev0" if a dev version
# Append "rc0" if a rc version
# No zero padding!
__version__ = "24.7.6"
__version__ = "24.7.7"


def get_hardware_version() -> tuple[int, int] | tuple[int, int, str]:
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements_worker.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-r requirements.txt
numpy==1.24.2
Adafruit-Blinka==8.43.0
adafruit-circuitpython-ads1x15==2.2.23
DAC43608==0.2.7
TMP1075==0.2.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@


WORKER_REQUIREMENTS = [
"numpy==1.24.2",
"Adafruit-Blinka==8.43.0",

This comment has been minimized.

Copy link
@CamDavidsonPilon

CamDavidsonPilon Jul 5, 2024

Author Member

(see commit message, and this issue: adafruit/Adafruit_Blinka#865)

"adafruit-circuitpython-ads1x15==2.2.23",
"DAC43608==0.2.7",
"TMP1075==0.2.1",
Expand Down

0 comments on commit cfd1b90

Please sign in to comment.