Skip to content

Commit

Permalink
Merge pull request #416 from tjhei/requirements_txt
Browse files Browse the repository at this point in the history
add requirements.txt, use in CI
  • Loading branch information
bobmyhill committed Sep 4, 2021
2 parents 4fe98d7 + 2da4e00 commit 59777b8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:
texlive \
texlive-latex-extra
python -m pip install --upgrade pip
pip install matplotlib numpy scipy sympy pycddlib cvxpy
python -m pip install -r requirements.txt
pip install pycddlib # this is optional
python --version
- name: test
run: |
Expand Down
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Authors (as of 2021):

* Python 3.7+
* Python modules:
NumPy, SciPy, SymPy, Matplotlib
NumPy, SciPy, SymPy, Matplotlib, cvxpy

## Optional, needed for some functionality

Expand Down
5 changes: 5 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
numpy
matplotlib
scipy
sympy
cvxpy

0 comments on commit 59777b8

Please sign in to comment.