Skip to content

Commit

Permalink
Merge pull request #122 from J35P312/master
Browse files Browse the repository at this point in the history
fix graphlib import problem in python 3.11
  • Loading branch information
J35P312 authored Jan 15, 2025
2 parents 14d1422 + bfa639d commit b02c1cf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM condaforge/mambaforge:24.9.2-0
WORKDIR /app

## Set TIDDIT version
ARG TIDDIT_VERSION=3.9.0
ARG TIDDIT_VERSION=3.9.1

## Add some info
LABEL base_image="python:3.8-slim"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

setup(
name = 'tiddit',
version = '3.9.0',
version = '3.9.1',


url = "https://github.com/SciLifeLab/TIDDIT",
Expand Down
2 changes: 1 addition & 1 deletion tiddit/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import tiddit.tiddit_gc as tiddit_gc

def main():
version="3.9.0"
version="3.9.1"
parser = argparse.ArgumentParser("""tiddit-{}""".format(version),add_help=False)
parser.add_argument("--sv" , help="call structural variation", required=False, action="store_true")
parser.add_argument("--cov" , help="generate a coverage bed file", required=False, action="store_true")
Expand Down
2 changes: 1 addition & 1 deletion tiddit/silverfish.pyx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import time
import sys
import graphlib
import tiddit.graphlib as graphlib
import copy

def build_kmer_hist(seq,kmer_hist,k):
Expand Down

0 comments on commit b02c1cf

Please sign in to comment.