Skip to content

Commit e7a0c65

Browse files
committed
Bug Fix with Python 3.9 Install Dependency
Fixed issue with install on Bullseye with Python 3.9 where greenlet was not building correctly. Pinned working version.
1 parent 33cbee4 commit e7a0c65

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,5 @@ venv-laptop.sh
6969
dt.sh
7070

7171
lt.sh
72+
73+
pip_list.json

auto-install/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ echo " - Installing module dependencies... "
122122
# Install module dependencies
123123
if ! python -c "import sys; assert sys.version_info[:2] >= (3,11)" > /dev/null; then
124124
echo "System is running a python version lower than 3.11, installing eventlet==0.30.2";
125-
python -m pip install "eventlet==0.30.2"
125+
python -m pip install "greenlet==3.1.1" "eventlet==0.30.2"
126126
else
127127
echo "System is running a python version 3.11 or greater, installing latest eventlet"
128128
python -m pip install eventlet

updater/post-update-message.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- Post Update Message for v1.8.0 -->
22
<H1>
33
<img src="{{ url_for('static', filename='img/launcher-icon-1x.png') }}" width="50" height="50" class="d-inline-block align-top" alt="">
4-
PiFire 1.9.0 Release - April 2025
4+
PiFire 1.9.2 Release - June 2025
55
</H1>
66
<div class="row justify-content-center">
77
<div class="card" style="width:80%">
@@ -126,6 +126,9 @@ <H1>
126126
<li>
127127
Pinning all python modules to specific versions to prevent recent issues with the Redis python module deprecating a parameter in the connection call.
128128
</li>
129+
<li>
130+
Fixed issue with install on Bullseye with Python 3.9 where greenlet was not building correctly. Pinned working version.
131+
</li>
129132
</ul>
130133

131134
</div>

updater/updater_manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"metadata" : {
33
"versions" : {
4-
"server" : "1.9.1",
4+
"server" : "1.9.2",
55
"cookfile" : "1.5.0",
66
"recipe" : "1.0.0",
7-
"build" : 44
7+
"build" : 45
88
},
99
"update_notes" : "",
1010
"update_warnings" : ""

0 commit comments

Comments
 (0)