Skip to content

Commit a8403d7

Browse files
committed
add requirements.txt
1 parent cde3f40 commit a8403d7

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/build_all_versions.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v4
1111
- uses: ilammy/msvc-dev-cmd@v1
12+
- name: Install dependencies
13+
run: |
14+
python -m pip install --upgrade pip
15+
pip install -r requirements.txt
1216
- name: Compile
1317
shell: bash
1418
run: |
@@ -27,6 +31,10 @@ jobs:
2731
with:
2832
version: 15
2933
platform: x64
34+
- name: Install dependencies
35+
run: |
36+
python -m pip install --upgrade pip
37+
pip install -r requirements.txt
3038
- name: Compile
3139
run: |
3240
python clone_and_build.py
@@ -41,6 +49,10 @@ jobs:
4149
runs-on: macos-latest
4250
steps:
4351
- uses: actions/checkout@v4
52+
- name: Install dependencies
53+
run: |
54+
python -m pip install --upgrade pip
55+
pip install -r requirements.txt
4456
- name: Compile
4557
run: |
4658
python clone_and_build.py

requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# requirements.txt
2+
gitpython
3+
packaging

0 commit comments

Comments
 (0)