Browse Source

Merge pull request #193 from kalliope-project/dev

Dev
Nicolas Marcq 8 years ago
parent
commit
4662489bc9
3 changed files with 6 additions and 2 deletions
  1. 4 0
      CHANGELOG.md
  2. 1 1
      kalliope/_version.py
  3. 1 1
      kalliope/core/ResourcesManager.py

+ 4 - 0
CHANGELOG.md

@@ -1,3 +1,7 @@
+v0.4.2 / 2017-01-18
+===================
+- fix community neuron installation
+
 v0.4.1 / 2017-01-15
 ===================
 - add CORS support for REST API

+ 1 - 1
kalliope/_version.py

@@ -1,2 +1,2 @@
 # https://www.python.org/dev/peps/pep-0440/
-version_str = "0.4.1"
+version_str = "0.4.2"

+ 1 - 1
kalliope/core/ResourcesManager.py

@@ -264,7 +264,7 @@ class ResourcesManager(object):
             current_version = match_current_version.group(0)
 
             for supported_version in supported_versions:
-                if version.parse(current_version) == version.parse(supported_version):
+                if version.parse(str(current_version)) == version.parse(str(supported_version)):
                     # we found the exact version
                     supported_version_found = True
                     break