From 34dbd2d110c34ab82424af707f03c253e48886a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20D=C3=ADaz=20Roussel?= <46527244+nicodr97@users.noreply.github.com> Date: Thu, 30 Apr 2026 09:28:39 +0200 Subject: [PATCH 1/3] Add missing dot in docker build command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 110a49f..c9dd1f6 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ For the (latest) SSHFS (v3.7), useful to test the above tips: ## Docker You may use Docker to mount encrypted EGA files using FUSE and decrypt them on-the-fly with your Crypt4GH private key: - docker build -t ega_crypt4ghfs:{tag} + docker build -t ega_crypt4ghfs:{tag} . docker run -d --name ega_crypt4ghfs_container \ -v /path/to/private.key:/tmp/ega_secret_key:ro \ -e USER_PRIVATE_KEY_FILE="/tmp/ega_secret_key" \ From 7f879d2097d89b6a1298482e4f3c0786b32cee89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20D=C3=ADaz=20Roussel?= <46527244+nicodr97@users.noreply.github.com> Date: Thu, 30 Apr 2026 09:30:27 +0200 Subject: [PATCH 2/3] FIx missing library import --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 86d2cef..157c4ea 100644 --- a/setup.py +++ b/setup.py @@ -4,6 +4,7 @@ from pathlib import Path import re from setuptools import setup, find_packages +import os # In this way, we are sure we are getting # the installer's version of the library From 6cdbd9f6cdb72a326af12fba7ed811082258c446 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20D=C3=ADaz=20Roussel?= <46527244+nicodr97@users.noreply.github.com> Date: Thu, 30 Apr 2026 09:41:35 +0200 Subject: [PATCH 3/3] Upload patch version to v1.2.3 --- crypt4ghfs/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypt4ghfs/__init__.py b/crypt4ghfs/__init__.py index 638ea97..9c108c4 100644 --- a/crypt4ghfs/__init__.py +++ b/crypt4ghfs/__init__.py @@ -6,7 +6,7 @@ """The pipeline package contains code to start an *Ingestion pipeline*.""" __title__ = 'Crypt4GH FUSE file system' -__version__ = '1.2.2' +__version__ = '1.2.3' __author__ = 'Frédéric Haziza' __license__ = 'Apache 2.0' __copyright__ = 'Crypt4ghFS @ CRG, Barcelona'