Skip to content

Commit

Permalink
Improve check for Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
nutjob4life committed Dec 9, 2024
1 parent 4ed8aa3 commit 4c8724c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ RUN \

# Over on GitHub Actions, we need to fail fast and not hit the six hour run limit, so make sure we got it right

RUN [ "`/usr/bin/python3 --version`" = "Python 3.11.10" ]
RUN [ "/usr/bin/python3 --version 2>/dev/null | grep -q '^Python 3\.11'" ]
RUN [ "`/usr/bin/python3 -c 'import numpy; print(numpy.__version__)'`" = "1.24.4" ]
RUN [ "`/usr/bin/python3 -c 'import pandas; print(pandas.__version__)'`" = "1.5.3" ]
RUN [ "`/usr/bin/python3 -c 'import PIL; print(PIL.__version__)'`" = "9.5.0" ]
Expand Down

0 comments on commit 4c8724c

Please sign in to comment.