Skip to content

Commit c931fa5

Browse files
authored
Updating dependencies (#27)
1 parent 18148f4 commit c931fa5

File tree

9 files changed

+831
-680
lines changed

9 files changed

+831
-680
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
8080
- name: Run tests and collect coverage
8181
run: |
82-
set -euox pipefail
82+
set -euo pipefail
8383
PACKAGE=$(echo "$(basename $PWD)" | tr "-" "_")
8484
[ -d "${PACKAGE}" ] || PACKAGE="."
8585
uv run --frozen pytest --cov-report=xml:${{ github.workspace }}/build/coverage/${{ matrix.dirs }}.xml --cov="${PACKAGE}" --junitxml=${{ github.workspace }}/build/test-results/${{ matrix.dirs }}.xml

.github/workflows/docker-image.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@ jobs:
5959

6060
- name: Set environment variables
6161
run: |
62-
echo "BUILD_DATE="$(date -u +"%Y-%m-%dT%H:%M:%SZ")"" >> $GITHUB_ENV
63-
echo "GIT_COMMIT="$(git rev-parse --short HEAD)"" >> $GITHUB_ENV
62+
scripts/get_env_variables.sh
6463
6564
- name: Login to Docker Hub
6665
uses: docker/login-action@v3
@@ -70,7 +69,7 @@ jobs:
7069

7170
- name: Build the Docker image
7271
run: |
73-
set -euox pipefail
72+
set -euo pipefail
7473
[ -f docker/docker-compose.yml ] && docker compose -f ./docker/docker-compose.yml build --pull
7574
working-directory: ${{ matrix.dirs }}
7675
env:
@@ -81,7 +80,7 @@ jobs:
8180
- name: Publish the Docker image
8281
id: publish
8382
run: |
84-
set -euox pipefail
83+
set -euo pipefail
8584
[ -f docker/docker-compose.yml ] && docker compose -f ./docker/docker-compose.yml push
8685
working-directory: ${{ matrix.dirs }}
8786
env:
@@ -92,7 +91,7 @@ jobs:
9291
- name: Publish the Docker image (Retry)
9392
if: ${{ failure() && steps.publish.outcome == 'failure' }}
9493
run: |
95-
set -euox pipefail
94+
set -euo pipefail
9695
[ -f docker/docker-compose.yml ] && docker compose -f ./docker/docker-compose.yml push
9796
working-directory: ${{ matrix.dirs }}
9897
env:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repos:
2929

3030
# Run the Ruff linter.
3131
- repo: https://github.com/astral-sh/ruff-pre-commit
32-
rev: v0.14.6
32+
rev: v0.14.10
3333
hooks:
3434
# Linter
3535
- id: ruff

dask-test/uv.lock

Lines changed: 131 additions & 98 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/usr/bin/env bash
2+
3+
set -euo pipefail
4+
5+
function log() {
6+
>&2 echo "${*}"
7+
}
8+
9+
BUILD_DATE="$(date -u +"%Y-%m-%dT%H:%M:%SZ")"
10+
GIT_COMMIT="$(git rev-parse --short HEAD)"
11+
12+
log "BUILD_DATE=${BUILD_DATE}"
13+
log "GIT_COMMIT=${GIT_COMMIT}"
14+
15+
if [ -n "${GITHUB_ENV+x}" ]; then
16+
echo "BUILD_DATE=${BUILD_DATE}" >> $GITHUB_ENV
17+
echo "GIT_COMMIT=${GIT_COMMIT}" >> $GITHUB_ENV
18+
fi

docker-health-check/uv.lock

Lines changed: 105 additions & 84 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

github/uv.lock

Lines changed: 214 additions & 189 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hadoop/uv.lock

Lines changed: 131 additions & 98 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jupyter/uv.lock

Lines changed: 226 additions & 204 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)