From 4de5205e3d421ef75e9826c0bcac200bb3c3478e Mon Sep 17 00:00:00 2001 From: Oswaldo Gomez Date: Thu, 17 Jul 2025 13:04:32 +0200 Subject: [PATCH 1/2] Removing content-type from authentication headers --- README.md | 2 +- pyproject.toml | 2 +- src/boltz/main.py | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3fea02f4c..84974a281 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ There are two main predictions in the affinity output: `affinity_pred_value` and ## Authentication to MSA Server -When using the `--use_msa_server` option with a server that requires authentication, you can provide credentials in one of two ways. More information is available in our [prediction instructions](docs/prediction.md). +When using the `--use_msa_server` option with a server that requires authentication, you can provide credentials in one of two ways. More information is available in our [prediction instructions](docs/prediction.md#authentication-to-msa-server). ## Evaluation diff --git a/pyproject.toml b/pyproject.toml index 9e22f29ef..666a4aab0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "boltz" -version = "2.2.0" +version = "2.2.1" requires-python = ">=3.10,<3.13" description = "Boltz" readme = "README.md" diff --git a/src/boltz/main.py b/src/boltz/main.py index 6bee2c458..791080d37 100644 --- a/src/boltz/main.py +++ b/src/boltz/main.py @@ -457,7 +457,6 @@ def compute_msa( key = api_key_header if api_key_header else "X-API-Key" value = api_key_value auth_headers = { - "Content-Type": "application/json", key: value } click.echo(f"Using API key authentication for MSA server (header: {key})") From 298ba08b17cfba9434916c576500ee93c4310bd7 Mon Sep 17 00:00:00 2001 From: Oswaldo Gomez Date: Fri, 18 Jul 2025 09:31:40 +0200 Subject: [PATCH 2/2] removing version bump --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 666a4aab0..9e22f29ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "boltz" -version = "2.2.1" +version = "2.2.0" requires-python = ">=3.10,<3.13" description = "Boltz" readme = "README.md"