Skip to content

Commit 60b32cb

Browse files
authored
Adjust lower bound for NumPy/Cython dependency requirements (#199)
* adjust dependencies version requirements * adjust up pytorch for jenkins
1 parent 8c50da4 commit 60b32cb

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

RELEASE_NOTES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
This is a document describing new functionality, bug fixes, breaking changes, etc. associated with Selene version releases from v0.5.0 onwards.
44

5+
## Version 0.5.3
6+
- Adjust dependency requirements
7+
58
## Version 0.5.2
69
- Fix Cython type error causing build issues with Python 3.9+
710

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools", "wheel", "numpy>=1.26.4", "cython>=3.0.10"]
2+
requires = ["setuptools", "wheel", "numpy>=1.21.4", "cython>=0.29.24"]
33

44
[tool.poetry.dependencies]
55
python = ">=3.9"

selene-cpu.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ channels:
55
- defaults
66
- conda-forge
77
dependencies:
8-
- cython=0.29.3
8+
- cython=0.29.24
99
- click==7.1.2
1010
- docopt=0.6.2
1111
- h5py=2.9.0
1212
- matplotlib=2.0.2
13-
- numpy=1.15.1
13+
- numpy=1.21.4
1414
- pandas=0.20.3
1515
- python=3.6.2
1616
- pyyaml=5.1
@@ -19,7 +19,7 @@ dependencies:
1919
- seaborn=0.8.1
2020
- setuptools=27.2.0
2121
- statsmodels=0.8.0
22-
- pytorch=0.4.1
22+
- pytorch=1.11.0
2323
- plotly=2.7.0
2424
- pyfaidx=0.5.5.2
2525
- pytabix=0.0.2

selene_sdk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.5.2"
1+
__version__ = "0.5.3"

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
cmdclass = {'build_ext': build_ext}
2626

2727
setup(name="selene-sdk",
28-
version="0.5.2",
28+
version="0.5.3",
2929
long_description=long_description,
3030
long_description_content_type='text/markdown',
3131
description=("framework for developing sequence-level "
@@ -50,11 +50,11 @@
5050
cmdclass=cmdclass,
5151
python_requires='>=3.9',
5252
install_requires=[
53-
"cython>=3.0.10",
53+
"cython>=0.29.24",
5454
'click',
5555
"h5py",
5656
"matplotlib>=2.2.3",
57-
"numpy>=1.26.4",
57+
"numpy>=1.21.4",
5858
"pandas",
5959
"plotly",
6060
"pyfaidx",

0 commit comments

Comments
 (0)