Skip to content

Commit

Permalink
Clean-up python requirements (#193)
Browse files Browse the repository at this point in the history
* Clean-up requirements

* Fix order in requirements file

* Add scipy as well
  • Loading branch information
davidscn authored Jul 31, 2024
1 parent 9a705c7 commit 1d07437
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/aste_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- uses: actions/checkout@v4
- name: install example dependencies
run: |
python3 -m pip install sympy scipy jinja2
python3 -m pip install -r requirements.txt
- name: prepare directories
run: |
mkdir build_gcc build_clang
Expand Down
2 changes: 2 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ The python tools require

- NumPy
- sympy (optional)
- jinja2 (optional)
- scipy (optional)

which can be installed directly using pip and the `requirements.txt` file in the repository

Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
jinja2
numpy
scipy
sympy>=1.9

0 comments on commit 1d07437

Please sign in to comment.