Skip to content

Commit 7565977

Browse files
committed
fix bugs with numpy=1.24.1
1 parent d3c7bb3 commit 7565977

7 files changed

Lines changed: 226 additions & 126 deletions

File tree

Pipfile

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ verify_ssl = true
44
name = "pypi"
55

66
[packages]
7-
pysam = "*"
8-
seaborn = "*"
9-
matplotlib = "*"
10-
filetype = "*"
7+
adjusttext = "*"
8+
cairocffi = "*"
119
click = "*"
12-
numpy = "*"
13-
requests = "*"
14-
xmltodict = "*"
15-
pybigwig = "*"
16-
pandas = "*"
1710
click-option-group = "*"
18-
cairocffi = "*"
11+
filetype = "*"
1912
hicmatrix = "*"
2013
loguru = "*"
14+
matplotlib = "*"
15+
numpy = "*"
16+
pandas = "*"
17+
pybigwig = "*"
18+
pysam = "*"
19+
requests = "*"
2120
scipy = "*"
22-
adjusttext = "*"
21+
seaborn = "*"
22+
xmltodict = "*"
2323

2424
[dev-packages]
2525

Pipfile.lock

Lines changed: 207 additions & 79 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements.txt

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,16 @@
11
adjusttext
2-
asciitree
32
cairocffi
4-
certifi
5-
cffi
6-
charset-normalizer
73
click
84
click-option-group
9-
contourpy
10-
cooler
11-
cycler
12-
cytoolz
13-
dill
145
filetype
15-
fonttools
16-
h5py
176
hicmatrix
18-
idna
19-
intervaltree
20-
kiwisolver
217
loguru
228
matplotlib
23-
multiprocess
24-
numexpr
259
numpy
26-
packaging
2710
pandas
28-
pillow
2911
pybigwig
30-
pycparser
31-
pyfaidx
32-
pypairix
33-
pyparsing
3412
pysam
35-
python-dateutil
36-
pytz
37-
pyyaml
3813
requests
3914
scipy
4015
seaborn
41-
setuptools
42-
simplejson
43-
six
44-
sortedcontainers
45-
tables
46-
toolz
47-
urllib3
4816
xmltodict

sashimi/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from sashimi.file.ATAC import ATAC
2222
from sashimi.plot import Plot
2323

24-
__version__ = "0.1.4"
24+
__version__ = "0.1.5"
2525
__author__ = "ygidtu & Ran Zhou"
2626
__email__ = "ygidtu@gmail.com"
2727

sashimi/file/ReadSegments.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@
1717
from sashimi.base.Readder import Reader
1818
from sashimi.file.File import File
1919

20-
np.warnings.filterwarnings('ignore', category=np.VisibleDeprecationWarning)
20+
21+
try:
22+
np.warnings.filterwarnings('ignore', category=np.VisibleDeprecationWarning)
23+
except AttributeError as err:
24+
pass
2125

2226

2327
class Reads(GenomicLoci):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
from setuptools import setup, find_packages
33

4-
__version__ = "0.1.4"
4+
__version__ = "0.1.5"
55
__author__ = "ygidtu & Ran Zhou"
66
__email__ = "ygidtu@gmail.com"
77

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sashimi.py",
33
"private": true,
4-
"version": "0.1.4",
4+
"version": "0.1.5",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

0 commit comments

Comments
 (0)