Skip to content

Commit

Permalink
[ipython] Fix Build Failures Caused by Unsupported Python Version
Browse files Browse the repository at this point in the history
IPython 8.19+ supports Python 3.10 and above, following SPEC0[^1]

[^1]: https://scientific-python.org/specs/spec-0000/
  • Loading branch information
DaveLak committed Jun 4, 2024
1 parent a9fc958 commit 21ac68e
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions projects/ipython/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,7 @@
################################################################################

FROM gcr.io/oss-fuzz-base/base-builder-python
# Ensure we work from right python version
RUN apt-get install -y python3.9 python3.9-dev && \
ln --force -s /usr/bin/python3.9 /usr/local/bin/python3 && \
apt-get install -y python3-pip && \
python3 -m pip install cython "atheris>=2.1.1" "pyinstaller==5.0.1" "coverage==6.3.2"
RUN python3 -m pip install cython 'pyinstaller==6.7.0'
RUN git clone https://github.com/ipython/ipython
WORKDIR $SRC
COPY build.sh fuzz_* $SRC/

0 comments on commit 21ac68e

Please sign in to comment.