Skip to content

Commit b02c1cf

Browse files
authored
Merge pull request #122 from J35P312/master
fix graphlib import problem in python 3.11
2 parents 14d1422 + bfa639d commit b02c1cf

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM condaforge/mambaforge:24.9.2-0
33
WORKDIR /app
44

55
## Set TIDDIT version
6-
ARG TIDDIT_VERSION=3.9.0
6+
ARG TIDDIT_VERSION=3.9.1
77

88
## Add some info
99
LABEL base_image="python:3.8-slim"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
setup(
2929
name = 'tiddit',
30-
version = '3.9.0',
30+
version = '3.9.1',
3131

3232

3333
url = "https://github.com/SciLifeLab/TIDDIT",

tiddit/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import tiddit.tiddit_gc as tiddit_gc
1919

2020
def main():
21-
version="3.9.0"
21+
version="3.9.1"
2222
parser = argparse.ArgumentParser("""tiddit-{}""".format(version),add_help=False)
2323
parser.add_argument("--sv" , help="call structural variation", required=False, action="store_true")
2424
parser.add_argument("--cov" , help="generate a coverage bed file", required=False, action="store_true")

tiddit/silverfish.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import time
22
import sys
3-
import graphlib
3+
import tiddit.graphlib as graphlib
44
import copy
55

66
def build_kmer_hist(seq,kmer_hist,k):

0 commit comments

Comments
 (0)