Skip to content

Commit 7254940

Browse files
committed
Prepare new version release
1 parent 6094a4b commit 7254940

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ To create a release you need write permission on the repository.
4646

4747
1. Check the author list in [`CITATION.cff`](https://github.com/haddocking/powerfit/blob/master/CITATION.cff)
4848
1. Bump the version in [src/powerfit_em/__init__.py](https://github.com/haddocking/powerfit/blob/master/src/powerfit_em/__init__.py)
49-
1. In [README.md](README.md) adjust docker command to use new version
49+
1. In [installation.md](docs/installation.md) adjust docker command to use new version.
50+
1. Merge the changes into the main branch.
5051
1. Go to the [GitHub release page](https://github.com/haddocking/powerfit/releases)
5152
1. Press draft a new release button
5253
1. Fill tag, title and description field. For tag use version from pyproject.toml and prepend with "v" character. For description use "Rigid body fitting of high-resolution structures in low-resolution cryo-electron microscopy density maps." line plus press "Generate release notes" button.

docs/installation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ a hypothetical `/path/to/data` on your machine can be done as follows
6161

6262
```shell
6363
docker run --rm -ti --user $(id -u):$(id -g) \
64-
-v /path/to/data:/data ghcr.io/haddocking/powerfit:v3.1.0 \
64+
-v /path/to/data:/data ghcr.io/haddocking/powerfit:v4.0.4 \
6565
/data/<map> <resolution> /data/<pdb> \
6666
-d /data/<results-dir>
6767
```
@@ -71,7 +71,7 @@ To run tutorial example use
7171
```shell
7272
# cd into powerfit-tutorial repo
7373
docker run --rm -ti --user $(id -u):$(id -g) \
74-
-v $PWD:/data ghcr.io/haddocking/powerfit:v3.1.0 \
74+
-v $PWD:/data ghcr.io/haddocking/powerfit:v4.0.4 \
7575
/data/ribosome-KsgA.map 13 /data/KsgA.pdb \
7676
-a 20 -p 2 -l -d /data/run-KsgA-docker
7777
```
@@ -80,7 +80,7 @@ To run on NVIDIA GPU using [NVIDIA container toolkit](https://docs.nvidia.com/da
8080
```shell
8181
docker run --rm -ti \
8282
--runtime=nvidia --gpus all -v /etc/OpenCL:/etc/OpenCL \
83-
-v $PWD:/data ghcr.io/haddocking/powerfit:v3.1.0 \
83+
-v $PWD:/data ghcr.io/haddocking/powerfit:v4.0.4 \
8484
/data/ribosome-KsgA.map 13 /data/KsgA.pdb \
8585
-a 20 -l -d /data/run-KsgA-docker-nv --gpu
8686
```
@@ -90,7 +90,7 @@ To run on Intel integrated graphics use
9090
```shell
9191
docker run --rm -ti \
9292
--device=/dev/dri \
93-
-v $PWD:/data ghcr.io/haddocking/powerfit:v3.1.0 \
93+
-v $PWD:/data ghcr.io/haddocking/powerfit:v4.0.4 \
9494
/data/ribosome-KsgA.map 13 /data/KsgA.pdb \
9595
-a 20 -l -d /data/run-KsgA-docker-nv --gpu
9696
```
@@ -102,7 +102,7 @@ sudo docker run --rm -ti \
102102
--device=/dev/kfd --device=/dev/dri \
103103
--security-opt seccomp=unconfined \
104104
--group-add video --ipc=host \
105-
-v $PWD:/data ghcr.io/haddocking/powerfit-rocm:v3.1.0 \
105+
-v $PWD:/data ghcr.io/haddocking/powerfit-rocm:v4.0.4 \
106106
/data/ribosome-KsgA.map 13 /data/KsgA.pdb \
107107
-a 20 -l -d /data/run-KsgA-docker-amd --gpu
108108
```

src/powerfit_em/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "4.0.3"
1+
__version__ = "4.0.4"
22

33
from .helpers import determine_core_indices
44
from .rotations import proportional_orientations, quat_to_rotmat

0 commit comments

Comments
 (0)