Skip to content

Commit

Permalink
fix(sas): update python version string (#534)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanpaget authored Oct 3, 2023
1 parent 78319d2 commit 35ca117
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docker-bits/6_sas.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ ENV SASPY_VERSION="4.1.0"

RUN pip install sas_kernel

COPY sascfg.py /opt/conda/lib/python3.9/site-packages/saspy/sascfg.py
# TODO: make Python version ENV var.
COPY sascfg.py /opt/conda/lib/python3.11/site-packages/saspy/sascfg.py

RUN jupyter nbextension install --py sas_kernel.showSASLog && \
jupyter nbextension enable sas_kernel.showSASLog --py && \
Expand Down
3 changes: 2 additions & 1 deletion output/sas/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,8 @@ ENV SASPY_VERSION="4.1.0"

RUN pip install sas_kernel

COPY sascfg.py /opt/conda/lib/python3.9/site-packages/saspy/sascfg.py
# TODO: make Python version ENV var.
COPY sascfg.py /opt/conda/lib/python3.11/site-packages/saspy/sascfg.py

RUN jupyter nbextension install --py sas_kernel.showSASLog && \
jupyter nbextension enable sas_kernel.showSASLog --py && \
Expand Down

0 comments on commit 35ca117

Please sign in to comment.