From cc70dc7e9cb14220654601f2fcb1c7e28cd724ed Mon Sep 17 00:00:00 2001 From: Benjamin Capodanno Date: Thu, 13 Nov 2025 12:59:28 -0800 Subject: [PATCH 1/2] chare: update Dockerfile to remove platform specification and pin agct dependency in pyproject.toml This dependency was unpinned in cool-seq-tool but was recently updated. Pinning here to prevent import errors with the new version. --- Dockerfile | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a38827f..c6f2f1d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=x86_64 python:3.11 +FROM python:3.11 RUN apt update # Install tools necessary used to install samtools and htslib so we can configure fasta files for genomic assembly. diff --git a/pyproject.toml b/pyproject.toml index e7568e0..fc9b0b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,6 +32,7 @@ requires-python = ">=3.11" # and clean up deps once a new release is made. dependencies = [ + "agct~=0.1.0", "requests", "biopython", "tqdm", From fbfc760a51dfa973c6cc9c5d68d8b87870591fa8 Mon Sep 17 00:00:00 2001 From: Benjamin Capodanno Date: Thu, 13 Nov 2025 13:01:40 -0800 Subject: [PATCH 2/2] Bump version --- src/dcd_mapping/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dcd_mapping/version.py b/src/dcd_mapping/version.py index 848b44d..3ea9280 100644 --- a/src/dcd_mapping/version.py +++ b/src/dcd_mapping/version.py @@ -1,3 +1,3 @@ """Provide dcd mapping version""" -dcd_mapping_version = "2025.2.0" +dcd_mapping_version = "2025.3.1"