File tree 5 files changed +11
-7
lines changed
5 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 12
12
strategy :
13
13
matrix :
14
14
python-version :
15
+ - " 3.7"
15
16
- " 3.8"
16
17
- " 3.9"
17
18
- " 3.10"
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ dependencies:
7
7
- scipy >= 1.2
8
8
- pandas >= 0.25
9
9
- pytables >= 3.5
10
+ - c-blosc2<=2.14.1 # Temp fix see https://github.com/Blosc/c-blosc2/issues/601
10
11
- cooler >= 0.8.9
11
12
- intervaltree >= 3.0
12
13
- pytest
Original file line number Diff line number Diff line change 2
2
import os
3
3
4
4
import gc
5
- from importlib .metadata import version
5
+ try :
6
+ from importlib .metadata import version
7
+ except ImportError :
8
+ from importlib_metadata import version
6
9
7
10
import cooler
8
11
import h5py
Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
4
4
5
5
[project ]
6
6
name = " HiCMatrix"
7
- version = " 17.1 "
7
+ version = " 17.2 "
8
8
authors = [
9
9
{
name =
" Lucille Lopez-Delisle, Joachim Wolff, Leily Rabbani, Vivek Bhardwaj, Fidel Ramirez" ,
email =
" [email protected] " },
10
10
]
11
11
description = " Helper package which implements HiCMatrix class for HiCExplorer, pyGenomeTracks and scHiCExplorer."
12
12
readme = " README.rst"
13
- requires-python = " >=3.8 "
13
+ requires-python = " >=3.7 "
14
14
classifiers = [
15
15
' Intended Audience :: Science/Research' ,
16
16
' Topic :: Scientific/Engineering :: Bio-Informatics' ,
@@ -21,7 +21,8 @@ dependencies = [
21
21
" tables >= 3.5" ,
22
22
" pandas >= 0.25" ,
23
23
" cooler >= 0.8.9" ,
24
- " intervaltree >= 3.0"
24
+ " intervaltree >= 3.0" ,
25
+ " importlib_metadata; python_version<'3.8'"
25
26
]
26
27
27
28
[project .urls ]
Original file line number Diff line number Diff line change @@ -3,6 +3,4 @@ filterwarnings =
3
3
ignore::UserWarning
4
4
ignore::FutureWarning
5
5
ignore::DeprecationWarning
6
- ignore::ImportWarning
7
- ignore::tables.exceptions.FlavorWarning
8
- ; error::ResourceWarning
6
+ ignore::ImportWarning
You can’t perform that action at this time.
0 commit comments