Skip to content

Commit b445479

Browse files
Hardcoded dependencies into the runner
1 parent 4e568cc commit b445479

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/build-and-release-windows.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,15 @@ jobs:
4646
pip install pyinstaller
4747
pip install flet # Make sure to install Flet, not PyInstaller if you are using flet to pack
4848
pip install mpmath
49+
pip install numpy
50+
pip install numba
51+
pip install scipy
52+
pip install qutip
53+
pip install matplotlib
54+
pip install plotly
55+
pip install jinja2
56+
pip install toml
57+
4958
5059
- name: Build with PyInstaller
5160
run: |

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@
2525
"plotly",
2626
"jinja2",
2727
"mpmath",
28-
"toml",
29-
"mpmath",
28+
"toml"
3029
],
3130
package_data={
3231
"quasi": ["templates/*.jinja"],

0 commit comments

Comments
 (0)