Skip to content

Commit 4e3352e

Browse files
Merge pull request #9327 from ThomasWaldmann/fixes-master
Misc. fixes (master)
2 parents 60928f3 + d537f0d commit 4e3352e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,9 @@ jobs:
148148
]
149149
}' || '{
150150
"include": [
151-
{"os": "ubuntu-22.04", "python-version": "3.11", "toxenv": "py311-llfuse", "binary": "borg-linux-glibc235-x86_64-gh"},
152-
{"os": "ubuntu-22.04-arm", "python-version": "3.11", "toxenv": "py311-llfuse", "binary": "borg-linux-glibc235-arm64-gh"},
153-
{"os": "ubuntu-24.04", "python-version": "3.12", "toxenv": "py312-pyfuse3"},
151+
{"os": "ubuntu-22.04", "python-version": "3.11", "toxenv": "py311-pyfuse3", "binary": "borg-linux-glibc235-x86_64-gh"},
152+
{"os": "ubuntu-22.04-arm", "python-version": "3.11", "toxenv": "py311-pyfuse3", "binary": "borg-linux-glibc235-arm64-gh"},
153+
{"os": "ubuntu-24.04", "python-version": "3.12", "toxenv": "py312-llfuse"},
154154
{"os": "ubuntu-24.04", "python-version": "3.13", "toxenv": "py313-pyfuse3"},
155155
{"os": "ubuntu-24.04", "python-version": "3.14", "toxenv": "py314-mfusepy"},
156156
{"os": "macos-15-intel", "python-version": "3.11", "toxenv": "py311-none", "binary": "borg-macos-15-x86_64-gh"},

scripts/borg.exe.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ a = Analysis([os.path.join(basepath, 'src', 'borg', '__main__.py'), ],
2727
hookspath=[],
2828
runtime_hooks=[],
2929
excludes=[
30-
'_ssl', 'ssl',
30+
# '_ssl', 'ssl', # do not exclude these, needed for pyfuse3/trio
3131
'pkg_resources', # avoid pkg_resources related warnings
3232
],
3333
win_no_prefer_redirects=False,

scripts/linux-run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ if [[ "$REBUILD" == "true" ]] || ! podman image exists "$FULL_IMAGE_NAME"; then
7474
podman build \
7575
--build-arg BASE_IMAGE="$BASE_IMAGE" \
7676
-t "$FULL_IMAGE_NAME" \
77-
-f scripts/Dockerfile.linux-tox .
77+
-f scripts/Dockerfile.linux-run .
7878
fi
7979

8080
echo "Running in container..."

0 commit comments

Comments
 (0)