Skip to content

Commit

Permalink
Release 0.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ngld committed Mar 5, 2018
2 parents adce5b3 + 5faa5fd commit 0408ba6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion knossos/center.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

# The version should follow the http://semver.org guidelines.
# Only remove the -dev tag if you're making a release!
VERSION = '0.8.2'
VERSION = '0.8.3'
UPDATE_LINK = 'https://fsnebula.org/knossos'
INNOEXTRACT_LINK = 'https://dev.tproxy.de/knossos/innoextract.txt'
DEBUG = os.getenv('KN_DEBUG', '0').strip() == '1'
Expand Down
2 changes: 1 addition & 1 deletion knossos/repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def query(self, mid, spec=None, pname=None):
logging.warning('Repo.query(): Expected Spec but got Version instead! (%s)' % repr(spec))
spec = util.Spec.from_version(spec)
elif isinstance(spec, str):
spec = util.Spec.from_version(spec)
spec = util.Spec(spec)

candidates = self.mods[mid]
version = None
Expand Down
2 changes: 1 addition & 1 deletion knossos/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -987,7 +987,7 @@ def init1(self):
for sub, dirs, files in os.walk(pkg_path):
relsub = os.path.relpath(sub, pkg_path)
for fn in files:
if fn.lower().endswith('.vp'):
if pkg.is_vp and fn.lower().endswith('.vp'):
self._reason = 'vp inception'
self.abort()
return
Expand Down

0 comments on commit 0408ba6

Please sign in to comment.