Skip to content

Commit

Permalink
bumped version number to 0.0.6
Browse files Browse the repository at this point in the history
added bluepy.__version__ field
  • Loading branch information
ChristianKuehnel committed Oct 6, 2019
1 parent dabd2b2 commit d3d6c14
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions btlewrap/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
"""Public interface for btlewrap."""
import sys

__version__ = '0.0.6'

# This check must be run first, so that it fails before loading the other modules.
# Otherwise we do not get a clean error message.
if sys.version_info <= (3, 4):
Expand Down
2 changes: 1 addition & 1 deletion run_integration_tests
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ fi
TOX=$(which tox)
sudo ${TOX} -e integration_tests -- --mac=$MAC $SUITE
# clean up the file system permissions after running the tests as root
sudo chown -R $UID .cache .tox .pytest_cache
sudo chown -R $UID .cache .tox .pytest_cache *.egg-info

3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
"""Python package description."""
from setuptools import setup, find_packages
from btlewrap import __version__ as version


def readme():
Expand All @@ -11,7 +12,7 @@ def readme():

setup(
name='btlewrap',
version='0.0.6-dev',
version=version,
description='wrapper around different bluetooth low energy backends',
url='https://github.com/ChristianKuehnel/btlewrap',
author='Christian Kuehnel',
Expand Down

0 comments on commit d3d6c14

Please sign in to comment.