Skip to content

Commit fbb9280

Browse files
authored
Merge pull request #1027 from I2PC/release-3.25.06
Release 3.25.06
2 parents effc203 + c28b4cf commit fbb9280

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
- Enhanced data collection steps (context suggests improvements in reproducibility or logging)
2424

2525
### More Xmipp
26-
- DLTK environments: channels limited to conda-forge and pip. Updated deepEMhancer version and models
26+
- DLTK environments: channels limited to conda-forge and pip. Updated deepEMhancer version and models, update all enviroments
2727
- Allowing to skip sorting in metadata_vec::split
2828

2929
## Release 3.24.12.0 - Poseidon
@@ -35,7 +35,7 @@
3535
- angular_continuous_assign2_gpu: Make a continuous angular assignment with GPU
3636
- cuda_fourier_projection
3737
- predict_deep_center
38-
- cl2d_clustering.py
38+
- cl2d_clustering
3939

4040
- Programs updated
4141
- tomogram_reconstruction: averaging with gold standard, tigre with internal interpolation, enviroment of tigre updated

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ For developers, it becomes handy to install Xmipp in an external directory for e
2020

2121
The first step is to download Xmipp sources:
2222

23-
`git clone https://github.com/I2PC/xmipp.git`
24-
25-
`cd xmipp`
23+
`git clone https://github.com/I2PC/xmipp.git xmipp-bundle & cd xmipp-bundle`
2624

2725
If you want to checkout an scpecific branch use the following command. For repositories where the branch does not exist, devel is utilized.
2826

src/xmipp/bindings/python/envs_DLTK/xmipp_DLTK_v0.3-gpu.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ channels:
99
dependencies:
1010
- python=3.7
1111
- libstdcxx-ng # To be compatible with scipion env
12+
- cudnn=7.6
13+
- cudatoolkit==10.0.130
1214
- pip
1315
- pip:
1416
- tensorflow-gpu==1.15.0

src/xmipp/bindings/python/envs_DLTK/xmipp_deepEMhancer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ channels:
66
- rsanchez1369
77
dependencies:
88
- python=3.10
9-
- deepemhancer=0.16 #CUDA > 10 required. Drivers nvidia >= 450.80.02
9+
- deepemhancer>=0.16 #CUDA > 10 required. Drivers nvidia >= 450.80.02
1010
- numba
1111
- h5py
1212
- libstdcxx-ng # To be compatible with scipion env

src/xmipp/bindings/python/xmipp_base.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,16 @@ def getCondaEnv(env, condaEnv):
255255
env['PYTHONWARNINGS'] = 'ignore::FutureWarning' # to skip warnings
256256
return env
257257

258+
def getCondaEnvTargetFilename(self, name):
259+
env = CondaEnvManager.XMIPP_CONDA_ENVS[name]
260+
261+
if "versionId" in env:
262+
target = f'{name}-{env["versionId"]}.yml'
263+
else:
264+
target = f'{name}.yml'
265+
266+
return target
267+
258268
@staticmethod
259269
def getCondaActivationCmd():
260270
""" This method takes the command to activate conda

0 commit comments

Comments
 (0)