Skip to content

Commit

Permalink
Change compat, bump versions
Browse files Browse the repository at this point in the history
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
jakobnissen committed Apr 28, 2022
1 parent 3001ded commit 47c6bba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]},
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion vamb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

__authors__ = 'Jakob Nybo Nissen', 'Simon Rasmussen'
__licence__ = 'MIT'
__version__ = (3, 0, 6)
__version__ = (3, 0, 7)

import sys as _sys
if _sys.version_info[:2] < (3, 5):
Expand Down

0 comments on commit 47c6bba

Please sign in to comment.