Skip to content
Open
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
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies:
- numpy
- cil # make synergistic notebooks work
- astra-toolbox # needed for ct examples
- scipy
- scipy>=1.16
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can't do this as it requires python>=3.11

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@casperdcl I took this version by attempting to see when scipy switched to the new structure. Maybe I have the wrong version? (seems unlikely we actually would need python 3.11, as some notebooks have the "new" import already I believe)

- matplotlib
- numba
- llvmlite # numba dependency
Expand Down
2 changes: 1 addition & 1 deletion notebooks/Synergistic/BrainWeb-single_slice_motion.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"from sirf.Utilities import examples_data_path\n",
"from sirf_exercises import exercises_data_path\n",
"import shutil\n",
"from scipy.ndimage.filters import gaussian_filter"
"from scipy.ndimage import gaussian_filter"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion notebooks/Synergistic/MAPEM_Bowsher.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"import shutil\n",
"from tqdm.auto import tqdm, trange\n",
"import time\n",
"from scipy.ndimage.filters import gaussian_filter\n",
"from scipy.ndimage import gaussian_filter\n",
"import sirf.STIR as pet\n",
"from numba import jit\n",
"from sirf_exercises import exercises_working_path\n",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ widgetsnbextension
deprecation
nodejs
numpy
scipy
scipy>=1.16
matplotlib
numba
llvmlite # numba dependency
Expand Down