Skip to content

Commit

Permalink
Bump version to 0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-wangxu committed Feb 8, 2018
1 parent b86fbda commit 994fa70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions persistqueue/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# coding=utf-8
__author__ = 'Peter Wang'
__license__ = 'BSD License'
__version__ = '0.3.4'
__version__ = '0.3.5'

from .exceptions import Empty, Full # noqa
from .pdict import PDict # noqa
from .queue import Queue # noqa
from .sqlqueue import SQLiteQueue, FIFOSQLiteQueue, FILOSQLiteQueue, UniqueQ # noqa

__all__ = ["Queue", "SQLiteQueue", "FIFOSQLiteQueue", "FILOSQLiteQueue",
"PDict", "Empty", "Full", "__author__", "__license__",
"UniqueQ", "PDict", "Empty", "Full", "__author__", "__license__",
"__version__"]
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

minversion = 2.0
skipsdist = True
envlist = py27, py34, py35, py36, pep8, cover
envlist = py27, py34, py35, py36, py37, pep8, cover
deps = -r{toxinidir}/test-requirements.txt

[testenv]
Expand Down

0 comments on commit 994fa70

Please sign in to comment.