Skip to content

Commit

Permalink
Version should have -dev, not .dev, for easier parsing if necessary
Browse files Browse the repository at this point in the history
  • Loading branch information
dotsdl committed Mar 27, 2016
1 parent e66b609 commit 5a70e30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from setuptools import setup, find_packages

setup(name='datreant.core',
version='0.7.0.dev',
version='0.7.0-dev',
description='persistent, pythonic trees for heterogeneous data',
author='David Dotson',
author_email='dotsdl@gmail.com',
Expand Down
2 changes: 1 addition & 1 deletion src/datreant/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@
from . import attach

__all__ = ['Treant', 'Group', 'Tree', 'Leaf', 'Bundle']
__version__ = "0.7.0.dev" # NOTE: keep in sync with RELEASE in setup.py
__version__ = "0.7.0-dev" # NOTE: keep in sync with RELEASE in setup.py

0 comments on commit 5a70e30

Please sign in to comment.