Skip to content

Commit

Permalink
Adjust lower bound for NumPy/Cython dependency requirements (#199)
Browse files Browse the repository at this point in the history
* adjust dependencies version requirements

* adjust up pytorch for jenkins
  • Loading branch information
kathyxchen authored Jul 9, 2024
1 parent 8c50da4 commit 60b32cb
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

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

## Version 0.5.3
- Adjust dependency requirements

## Version 0.5.2
- Fix Cython type error causing build issues with Python 3.9+

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools", "wheel", "numpy>=1.26.4", "cython>=3.0.10"]
requires = ["setuptools", "wheel", "numpy>=1.21.4", "cython>=0.29.24"]

[tool.poetry.dependencies]
python = ">=3.9"
6 changes: 3 additions & 3 deletions selene-cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ channels:
- defaults
- conda-forge
dependencies:
- cython=0.29.3
- cython=0.29.24
- click==7.1.2
- docopt=0.6.2
- h5py=2.9.0
- matplotlib=2.0.2
- numpy=1.15.1
- numpy=1.21.4
- pandas=0.20.3
- python=3.6.2
- pyyaml=5.1
Expand All @@ -19,7 +19,7 @@ dependencies:
- seaborn=0.8.1
- setuptools=27.2.0
- statsmodels=0.8.0
- pytorch=0.4.1
- pytorch=1.11.0
- plotly=2.7.0
- pyfaidx=0.5.5.2
- pytabix=0.0.2
2 changes: 1 addition & 1 deletion selene_sdk/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.5.2"
__version__ = "0.5.3"
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
cmdclass = {'build_ext': build_ext}

setup(name="selene-sdk",
version="0.5.2",
version="0.5.3",
long_description=long_description,
long_description_content_type='text/markdown',
description=("framework for developing sequence-level "
Expand All @@ -50,11 +50,11 @@
cmdclass=cmdclass,
python_requires='>=3.9',
install_requires=[
"cython>=3.0.10",
"cython>=0.29.24",
'click',
"h5py",
"matplotlib>=2.2.3",
"numpy>=1.26.4",
"numpy>=1.21.4",
"pandas",
"plotly",
"pyfaidx",
Expand Down

0 comments on commit 60b32cb

Please sign in to comment.