Skip to content

Commit 3f65cca

Browse files
authored
Add requirements.txt for Python scripts (#224)
1 parent 09fc551 commit 3f65cca

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
sudo apt-get install mpich
4949
sudo apt-get install libomp-dev
5050
sudo apt-get install valgrind
51-
python3 -m pip install xlsxwriter
51+
python3 -m pip install -r requirements.txt
5252
- name: ccache
5353
uses: hendrikmuhs/[email protected]
5454
with:
@@ -128,7 +128,7 @@ jobs:
128128
sudo apt-get install mpich
129129
sudo apt-get install libomp-dev
130130
sudo apt-get install valgrind
131-
python3 -m pip install xlsxwriter
131+
python3 -m pip install -r requirements.txt
132132
- name: ccache
133133
uses: hendrikmuhs/[email protected]
134134
with:
@@ -988,7 +988,7 @@ jobs:
988988
sudo apt-get install mpich
989989
sudo apt-get install libomp-dev
990990
sudo apt-get install valgrind
991-
python3 -m pip install xlsxwriter
991+
python3 -m pip install -r requirements.txt
992992
- name: ccache
993993
uses: hendrikmuhs/[email protected]
994994
with:

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
numpy==2.2.1
2+
XlsxWriter==3.2.0

0 commit comments

Comments
 (0)