Skip to content

Commit

Permalink
Python 3.13 compatibility
Browse files Browse the repository at this point in the history
eventlet just merged a commit in their repository for Python 3.13
support. Unfortunately they have not created a new release with this
compatibility yet. Until then, we need to pin to a git commit and add
"git" to our docker images.
  • Loading branch information
kruton committed Nov 19, 2024
1 parent e00bc0d commit 7bae8f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/test/Dockerfile-alpine
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ RUN \
cargo \
g++ \
gcc \
git \
jpeg-dev \
libc-dev \
libffi-dev \
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Used by Pyppeteer
pyee

eventlet>=0.36.1 # fixes SSL error on Python 3.12
# Support for Python 3.13
eventlet @ git+https://github.com/eventlet/eventlet@4d48d10b990910cc87ec6bbeeaea63b295fe314d
feedgen~=0.9
flask-compress
# 0.6.3 included compatibility fix for werkzeug 3.x (2.x had deprecation of url handlers)
Expand Down

0 comments on commit 7bae8f6

Please sign in to comment.