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

Pin setuptools<71 for coffea 0.7.x #34

Merged
merged 2 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions coffea-base/Dockerfile.almalinux8
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ ENV PYTHON_VERSION=${python}
RUN yum -y install epel-release \
&& yum -y update \
&& yum -y install curl git bzip2 libgfortran which zsh emacs vim htop man man-pages \
&& curl -sSL https://github.com/conda-forge/miniforge/releases/download/23.3.1-1/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \
&& bash /tmp/mambaforge.sh -bfp /usr/local \
&& rm -rf /tmp/mambaforge.sh \
&& curl -fsSLo Miniforge3.sh "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh" \
&& bash Miniforge3.sh -bfp /usr/local \
&& rm -rf Miniforge3.sh \
&& mamba update mamba \
&& mamba clean --all --yes \
&& rpm -e --nodeps curl bzip2 \
Expand Down
6 changes: 3 additions & 3 deletions coffea-base/Dockerfile.almalinux9
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ ENV PYTHON_VERSION=${python}
RUN yum -y install epel-release \
&& yum -y update \
&& yum -y --allowerasing install wget git bzip2 libgfortran which zsh emacs vim htop man man-pages \
&& curl -sSL https://github.com/conda-forge/miniforge/releases/download/23.3.1-1/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \
&& bash /tmp/mambaforge.sh -bfp /usr/local \
&& rm -rf /tmp/mambaforge.sh \
&& curl -fsSLo Miniforge3.sh "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh" \
&& bash Miniforge3.sh -bfp /usr/local \
&& rm -rf Miniforge3.sh \
&& mamba update mamba \
&& mamba clean --all --yes \
&& yum clean all
Expand Down
1 change: 1 addition & 0 deletions coffea-base/environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ dependencies:
- pytorch-sparse
- pytorch-spline-conv
- pip:
- "setuptools<71"
- fastjet==3.4.0.1 # LAST VERSION workking with awkward1
- tritonclient[all]
- tflite-runtime==2.14.0
Expand Down
6 changes: 3 additions & 3 deletions coffea-dask/Dockerfile.almalinux8
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ ENV PYTHON_VERSION=${python}
RUN yum -y install epel-release \
&& yum -y update \
&& yum -y install wget git bzip2 libgfortran which zsh emacs vim htop man man-pages \
&& curl -sSL https://github.com/conda-forge/miniforge/releases/download/23.3.1-1/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \
&& bash /tmp/mambaforge.sh -bfp /usr/local \
&& rm -rf /tmp/mambaforge.sh \
&& curl -fsSLo Miniforge3.sh "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh" \
&& bash Miniforge3.sh -bfp /usr/local \
&& rm -rf Miniforge3.sh \
&& mamba update mamba \
&& mamba clean --all --yes \
&& rpm -e --nodeps curl bzip2 \
Expand Down
6 changes: 3 additions & 3 deletions coffea-dask/Dockerfile.almalinux9
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ ENV PYTHON_VERSION=${python}
RUN yum -y install epel-release \
&& yum -y update \
&& yum -y --allowerasing install wget git bzip2 libgfortran which zsh emacs vim htop man man-pages \
&& curl -sSL https://github.com/conda-forge/miniforge/releases/download/23.3.1-1/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \
&& bash /tmp/mambaforge.sh -bfp /usr/local \
&& rm -rf /tmp/mambaforge.sh \
&& curl -fsSLo Miniforge3.sh "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh" \
&& bash Miniforge3.sh -bfp /usr/local \
&& rm -rf Miniforge3.sh \
#&& conda config --set solver classic \
&& mamba update mamba \
&& mamba clean --all --yes \
Expand Down
Loading