-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Turns out Python is not big on semantic versioning. If I want Vamb on Conda, I'll have to give up specifying compatible version ranges for dependencies. That will surely bite me in the butt later, but what can I do?
- Loading branch information
1 parent
3001ded
commit 47c6bba
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
"url": "https://github.com/RasmussenLab/vamb", | ||
"author": "Jakob Nybo Nissen and Simon Rasmussen", | ||
"author_email": "[email protected]", | ||
"version": "3.0.6", | ||
"version": "3.0.7", | ||
"license": "MIT", | ||
"packages": find_packages(), | ||
"package_data": {"vamb": ["kernel.npz"]}, | ||
|
@@ -22,9 +22,9 @@ | |
"ext_modules": [Extension("vamb._vambtools", | ||
sources=["src/_vambtools.pyx"], | ||
language="c")], | ||
"install_requires": ["numpy~=1.20", "torch~=1.8", "pysam~=0.14"], | ||
"setup_requires": ['Cython~=0.29', "setuptools~=58.0"], | ||
"python_requires": "~=3.7", | ||
"install_requires": ["numpy>=1.20", "torch>=1.8", "pysam>=0.14"], | ||
"setup_requires": ['Cython>=0.29', "setuptools>=58.0"], | ||
"python_requires": ">=3.5", | ||
"classifiers":[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters