Skip to content

Commit ba8635d

Browse files
authored
0.14.0 release (#556)
* test release * try to get docker working * next try * next docker test * try fix
1 parent 0df3b33 commit ba8635d

4 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/docker.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,17 @@ jobs:
3636
contents: read
3737
attestations: write
3838
steps:
39-
- name: Maximize build disk space
40-
uses: easimon/maximize-build-space@v10
41-
with:
42-
remove-dotnet: true
43-
remove-android: true
44-
remove-haskell: true
45-
remove-codeql: true
46-
remove-docker-images: true
47-
root-reserve-mb: 35000
48-
swap-size-mb: 1048
39+
- name: Free disk space
40+
run: |
41+
echo "=== Disk space before cleanup ==="
42+
df -h /
43+
sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc /opt/hostedtoolcache/CodeQL
44+
sudo rm -rf /usr/local/share/boost
45+
sudo rm -rf /opt/hostedtoolcache
46+
sudo docker image prune --all --force
47+
echo "=== Disk space after cleanup ==="
48+
df -h /
49+
shell: bash
4950

5051
- name: Check out the repo
5152
uses: actions/checkout@v4

docker/Dockerfile.deps

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,17 @@ apt-get -q clean -y
2727
rm -rf /var/lib/apt/lists/*
2828
EOF
2929

30-
RUN <<EOF
30+
# Use BuildKit cache mount for conda packages to avoid disk space issues
31+
RUN --mount=type=cache,target=/opt/conda/pkgs,sharing=locked <<EOF
3132
# install conda environment
3233
set -x
3334
mamba env update -n base -f rsc_rapids.yml
34-
mamba clean -afy
3535
EOF
3636

37-
RUN <<EOF
37+
RUN --mount=type=cache,target=/opt/conda/pkgs,sharing=locked <<EOF
3838
# install pytest
3939
set -x
4040
mamba install -y -n base pytest -c conda-forge
41-
mamba clean -afy
4241
EOF
4342

4443
RUN <<EOF

docs/release-notes/0.14.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### 0.14.0 {small}`the-future`
1+
### 0.14.0 {small}`2026-02-02`
22

33
```{rubric} Features
44
```

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies = [
1919
"pandas",
2020
"natsort",
2121
"scikit-misc>=0.1.3",
22-
"scikit-learn<1.8.0",
22+
"scikit-learn",
2323
"matplotlib>=3.4",
2424
"tqdm",
2525
"statsmodels>=0.12.0",

0 commit comments

Comments
 (0)