Skip to content

Commit 2e06157

Browse files
committed
Added cmakelist
1 parent fefa519 commit 2e06157

2 files changed

Lines changed: 6 additions & 7 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ jobs:
4848

4949
# Linux specific settings
5050
CIBW_BEFORE_ALL_LINUX: >
51-
yum install -y cmake3 openmp-devel ||
52-
(apt-get update && apt-get install -y cmake libomp-dev)
51+
yum install -y cmake3 ||
52+
(apt-get update && apt-get install -y cmake)
5353
CIBW_REPAIR_WHEEL_COMMAND_LINUX: auditwheel repair -w {dest_dir} {wheel}
5454

5555
# macOS specific settings

python/kalign/__init__.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
from importlib import import_module
1111
from typing import Any, List, Literal, Optional, Union
1212

13-
from . import _core, io, utils
13+
from . import _core
1414

15-
__version__ = "3.4.1"
15+
__version__ = "3.4.5"
1616
__author__ = "Timo Lassmann"
1717
__email__ = "timo.lassmann@telethonkids.org.au"
1818

@@ -410,7 +410,8 @@ def write_alignment(
410410

411411
mapped_format = format_map[format_lower]
412412

413-
# Use appropriate writer from io module
413+
# Use appropriate writer from io module (lazy import to avoid circular imports)
414+
from . import io
414415
if mapped_format == "fasta":
415416
io.write_fasta(sequences, output_file, ids=ids)
416417
elif mapped_format == "clustal":
@@ -496,8 +497,6 @@ def generate_test_sequences(
496497
"set_num_threads",
497498
"get_num_threads",
498499
"kalign",
499-
"io",
500-
"utils",
501500
"DNA",
502501
"DNA_INTERNAL",
503502
"RNA",

0 commit comments

Comments
 (0)