Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Gregorio Litenstein <[email protected]>
  • Loading branch information
Lord-Kamina committed Feb 2, 2025
1 parent 7b49029 commit 3bdf92d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,25 @@ on:
- develop
pull_request:
types: [labeled, opened, synchronize, reopened]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Allows you to run this workflow manually from the Actions tab
inputs:
ref:
description: "Enter a tag or commit to package"
default: ""
default: "develop"
gvsbuild-tag:
description: "Use an alternative gvsbuild release for the windows build. Defaults to latest."
default: "latest"

jobs:
windows_package:
windows-package:
runs-on: windows-2022
if: (github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'package'))
strategy:
matrix:
arch: [x64, x86]
python: ["3.7", "3.10"]
libtorrent: [2.0.8, 1.2.19]
libtorrent: [2.0.7, 1.2.19]

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
run: echo "SECURITY_TESTS=True" >> $GITHUB_ENV

- name: Install dependencies
# sudo apt-get install libcairo2-dev libgirepository1.0-1
run: |
sudo apt-get install libcairo2-dev libgirepository1.0-dev
pip install --upgrade pip wheel setuptools
pip install -r requirements-ci.txt
pip install -e .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: |
pip install --upgrade pip wheel
pip install tox
sudo apt-get install enchant-2 libgirepository1.0-dev
sudo apt-get install enchant-2
- name: Build docs with tox
env:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
libtorrent
twisted[tls]>=17.1
twisted[tls]>=17.1,<=24.7
twisted[tls]<23,>=17.1; sys_platform == 'win32'
rencode
pyopenssl
Expand Down

0 comments on commit 3bdf92d

Please sign in to comment.