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

Add python 3.12 in the build matrix #16

Merged
merged 3 commits into from
Jun 27, 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
4 changes: 3 additions & 1 deletion .github/workflows/gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,16 @@ jobs:
matrix:
image_dir: [coffea-base, coffea-dask]
distro: [almalinux8, almalinux9]
python: ["3.9", "3.10", "3.11"]
python: ["3.9", "3.10", "3.11", "3.12"]
exclude:
- distro: almalinux8
python: 3.9
- distro: almalinux9
python: 3.9
- image_dir: coffea-base
python: 3.11
- image_dir: coffea-base
python: 3.12
name: ${{ matrix.image_dir }}-${{ matrix.distro }}-${{ matrix.python }}
runs-on: ubuntu-latest
permissions:
Expand Down
2 changes: 1 addition & 1 deletion coffea-dask/Dockerfile.almalinux8
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN yum -y install epel-release \
&& wget -O Miniforge3.sh "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh" \
&& bash Miniforge3.sh -bfp /usr/local \
&& rm -rf /tmp/mambaforge.sh \
&& conda config --set solver classic \
#&& conda config --set solver classic \
&& mamba update mamba \
&& mamba clean --all --yes \
&& rpm -e --nodeps curl bzip2 \
Expand Down
2 changes: 1 addition & 1 deletion coffea-dask/Dockerfile.almalinux9
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN yum -y install epel-release \
&& wget -O Miniforge3.sh "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh" \
&& bash Miniforge3.sh -bfp /usr/local \
&& rm -rf /tmp/mambaforge.sh \
&& conda config --set solver classic \
#&& conda config --set solver classic \
&& mamba update mamba \
&& mamba clean --all --yes \
&& yum clean all
Expand Down
2 changes: 1 addition & 1 deletion coffea-dask/environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies:
- vector
- hist
# ML
- xgboost
#- xgboost
- pytorch
- torch-scatter
- pip
Expand Down
Loading