Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
classner committed Sep 6, 2016
1 parent 88546f1 commit a49d539
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pymp/__init__.py
Expand Up @@ -76,7 +76,7 @@ def __enter__(self):
assert Parallel._level == 0, (
"No nested parallel contexts allowed!")
Parallel._level += 1
self._iter_queue = _shared.queue(maxsize=self._num_threads - 1)
self._iter_queue = _shared.queue(maxsize=self._num_threads - 1)
# pylint: disable=protected-access
with _shared._LOCK:
# Make sure that max threads is not exceeded.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -5,7 +5,7 @@
"""
from setuptools import setup, find_packages

VERSION = '0.3'
VERSION = '0.3.1'

setup(
name='pymp-pypi',
Expand Down

0 comments on commit a49d539

Please sign in to comment.