Skip to content

Commit b8e345d

Browse files
committed
Don’t try to use newer gvsbuild stack
The newer gvsbuild stack has versions of pygobject that are not compatible with the older twisted currently being used on windows. Python 3.13 and the newer stack can be added again if and when that is fixed Signed-off-by: Gregorio Litenstein <g.litenstein@gmail.com>
1 parent e673ea6 commit b8e345d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
strategy:
2525
matrix:
2626
arch: [x64, x86]
27-
python: ["3.13", "3.9"]
27+
python: ["3.9"]
2828
libtorrent: [2.0.11]
2929
include:
30-
- python: 3.13
31-
gvsbuild-stack: latest
3230
- python: 3.9
3331
gvsbuild-stack: older
32+
# - python: 3.13
33+
# gvsbuild-stack: latest
3434

3535
steps:
3636
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
timeout-minutes: 30
8585
strategy:
8686
matrix:
87-
python-version: ["3.9", "3.13"]
87+
python-version: ["3.9"]
8888

8989
steps:
9090
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
@@ -114,7 +114,7 @@ jobs:
114114
- name: Install GTK
115115
run: |
116116
$WebClient = New-Object System.Net.WebClient
117-
$WebClient.DownloadFile("https://github.com/${{ github.repository_owner }}/gvsbuild-release/releases/latest/download/gvsbuild-py${{ matrix.python-version }}-x64.zip","C:\GTK.zip")
117+
$WebClient.DownloadFile("https://github.com/${{ github.repository_owner }}/gvsbuild-release/releases/older/download/gvsbuild-py${{ matrix.python-version }}-x64.zip","C:\GTK.zip")
118118
7z x C:\GTK.zip -oc:\GTK
119119
echo "C:\GTK\release\lib" | Out-File -FilePath $env:GITHUB_PATH -Append
120120
echo "C:\GTK\release\bin" | Out-File -FilePath $env:GITHUB_PATH -Append

0 commit comments

Comments
 (0)