aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.rst5
-rw-r--r--Makefile2
-rw-r--r--gensvm/__init__.py2
3 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index be4d1df..26b499d 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,6 +1,11 @@
Change Log
----------
+Version 0.2.4
+^^^^^^^^^^^^^
+
+- Add support for retrieving support vectors
+
Version 0.2.3
^^^^^^^^^^^^^
diff --git a/Makefile b/Makefile
index 22ed0c7..134fcbe 100644
--- a/Makefile
+++ b/Makefile
@@ -29,7 +29,7 @@ install2: ## Install for the current user using the python2 command
python2 setup.py install --user
test: in ## Run nosetests using the default nosetests command
- nosetests -v
+ green -vvv -f
test2: ## Run nosetests using the nosetests2 command
python2 setup.py build_ext -i
diff --git a/gensvm/__init__.py b/gensvm/__init__.py
index c8cd0be..5c6b940 100644
--- a/gensvm/__init__.py
+++ b/gensvm/__init__.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-__version__ = "0.2.3"
+__version__ = "0.2.4"
from .core import GenSVM
from .gridsearch import GenSVMGridSearchCV