Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes for example test and PlaneWaveTurbulence #492

Merged
merged 4 commits into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/test_examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,9 @@ jobs:
- name: Preinstall
run: |
sudo apt-get update
sudo apt-get install libmuparser-dev python3 python3-dev python3-numpy python3-setuptools python-setuptools libhdf5-serial-dev libomp5 libomp-dev libfftw3-dev libcfitsio-dev lcov
sudo apt-get install libmuparser-dev python3 python3-dev python3-setuptools python-setuptools libhdf5-serial-dev libomp5 libomp-dev libfftw3-dev libcfitsio-dev lcov
pip3 install -r doc/pages/example_notebooks/requirements.txt # load requrements for notebooks
pip3 install --upgrade Pygments
pip3 install --upgrade numpy
- name: Set up the build
env:
CXX: ${{ matrix.config.cxx }}
Expand Down
2 changes: 1 addition & 1 deletion doc/pages/example_notebooks/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# collection of all packages used in the analyis of the example notebooks. This is used for the automatic test of the notebooks
numpy
numpy==1.26.4
matplotlib
pandas
healpy
Expand Down
1 change: 1 addition & 0 deletions src/magneticField/turbulentField/PlaneWaveTurbulence.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@

#ifdef ENABLE_FAST_WAVES
#include <immintrin.h>
#include <memory.h>
#endif

namespace crpropa {
Expand Down
Loading