Skip to content

Commit b7930cf

Browse files
committed
Trying to fix dependencies
1 parent 4334383 commit b7930cf

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,14 @@ jobs:
5555
- uses: actions/checkout@v4
5656
with:
5757
submodules: recursive
58+
- name: Set up Python
59+
uses: actions/setup-python@v5
60+
with:
61+
python-version: '3.11'
5862
- name: Enable MSVC Developer Command Prompt
5963
uses: ilammy/msvc-dev-cmd@v1
6064
- name: Install python dependencies
61-
run: pip install cryptography --break-system-packages
65+
run: python -m pip install cryptography
6266
- name: Build
6367
run: |
6468
$env:VCPKG_ROOT=""

.github/workflows/windows.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ jobs:
88
- uses: actions/checkout@v4
99
with:
1010
submodules: recursive
11+
- name: Set up Python
12+
uses: actions/setup-python@v5
13+
with:
14+
python-version: '3.11'
1115
- name: Enable MSVC Developer Command Prompt
1216
uses: ilammy/msvc-dev-cmd@v1
1317
- name: Install python dependencies
14-
run: pip install cryptography --break-system-packages
18+
run: python -m pip install cryptography
1519
- name: Build
1620
run: |
1721
$env:VCPKG_ROOT=""

0 commit comments

Comments
 (0)