Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: pin packaging version in dockerfile.processing_image to fix smoke tests #1635

Merged
merged 5 commits into from
Nov 2, 2021
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile.processing_image
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN git clone https://github.com/chanzuckerberg/single-cell-explorer.git \
&& rm -rf single-cell-explorer client build/client /usr/bin/npm

# Install python dependencies
RUN pip3 install scanpy==1.6.0 python-igraph==0.8.3 louvain==0.7.0 awscli
RUN pip3 install scanpy==1.6.0 python-igraph==0.8.3 louvain==0.7.0 pyparsing==2.4.7 awscli
RUN pip3 install cellxgene-schema==2.0.3

ADD requirements.txt requirements.txt
Expand Down