Skip to content

Commit

Permalink
gh-gl-sync: Fix broken sync script
Browse files Browse the repository at this point in the history
The sync script image became broken recently when it was rebuilt and
picked up python 3.11.  At that point, one of the dependencies of the
github package, wrapt, started failing.  See here:

GrahamDumpleton/wrapt#196

This pins python at 3.10 until the github package can update its
(possibly transitive) dependency on wrapt to the fixed version.
  • Loading branch information
scottwittenburg committed Nov 2, 2022
1 parent cdceab2 commit a3ae378
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/custom_docker_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- python-aws-bash
include:
- docker-image: gh-gl-sync
image-tags: ghcr.io/spack/ci-bridge:0.0.30
image-tags: ghcr.io/spack/ci-bridge:0.0.31
- docker-image: gitlab-api-scrape
image-tags: ghcr.io/spack/gitlab-api-scrape:0.0.2
- docker-image: ci-key-rotate
Expand Down
2 changes: 1 addition & 1 deletion images/gh-gl-sync/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3
FROM python:3.10

WORKDIR /scripts/
COPY requirements.txt ./
Expand Down
2 changes: 1 addition & 1 deletion k8s/custom/gh-gl-sync/cron-jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
restartPolicy: Never
containers:
- name: sync
image: ghcr.io/spack/ci-bridge:0.0.30
image: ghcr.io/spack/ci-bridge:0.0.31
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down

0 comments on commit a3ae378

Please sign in to comment.