Skip to content

Commit

Permalink
Merge pull request #389 from vertexmc/release_v0.0.20
Browse files Browse the repository at this point in the history
update versions in prep for v0.0.20 tag
  • Loading branch information
vertexmc authored Aug 9, 2017
2 parents b7df2a7 + edb8ce3 commit 860934b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
#!/usr/bin/env python
from setuptools import setup,find_packages
from setuptools import setup, find_packages


setup(
name='synapse',
version='0.0.19', # sync with synapse.version!
version='0.0.20', # sync with synapse.version!
description='Synapse Distributed Key-Value Hypergraph Analysis Framework',
author='Invisigoth Kenshoto',
author_email='[email protected]',
url='https://github.com/vertexproject/synapse',
license='Apache License 2.0',

packages=find_packages(exclude=['*.tests','*.tests.*']),
packages=find_packages(exclude=['*.tests', '*.tests.*']),

include_package_data=True,

Expand Down
2 changes: 1 addition & 1 deletion synapse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
if tornado.version_info < (3, 2, 2):
raise Exception('synapse requires tornado >= 3.2.2')

version = (0, 0, 19)
version = (0, 0, 20)
verstring = '.'.join([str(x) for x in version])

# load all the synapse builtin modules
Expand Down

0 comments on commit 860934b

Please sign in to comment.