Skip to content

Commit ca0177e

Browse files
committed
Version bump v0.0.9 and exclude tests
1 parent 0c505b2 commit ca0177e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ include LICENSE
22
include README.rst
33
include requirements.txt
44
recursive-include rest_framework_sso/migrations *
5+
recursive-exclude tests *
56
recursive-exclude * __pycache__
67
recursive-exclude * *.py[co]

rest_framework_sso/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from __future__ import absolute_import, unicode_literals
33

44
__title__ = 'djangorestframework-sso'
5-
__version__ = '0.0.8'
5+
__version__ = '0.0.9'
66
__author__ = 'Lenno Nagel'
77
__license__ = 'MIT'
88
__copyright__ = 'Copyright 2016 Namespace OÜ'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ def get_install_requires():
2626

2727
setup(
2828
name='djangorestframework-sso',
29-
version='0.0.8',
30-
packages=find_packages(),
29+
version='0.0.9',
30+
packages=find_packages(exclude=['tests']),
3131
include_package_data=True,
3232
license='MIT License',
3333
description='Single sign-on extension to the Django REST Framework.',

0 commit comments

Comments
 (0)