Skip to content

Commit 83f6537

Browse files
committed
Indicate unsupported package in setup
1 parent 9620cab commit 83f6537

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

labkey/unsupported/messageboard.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
This module provides functions for interacting with Message Boards on the
2222
LabKey Server.
2323
"""
24+
from __future__ import unicode_literals
2425
from requests.exceptions import SSLError
2526
from labkey.utils import build_url
2627

labkey/unsupported/wiki.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
This module provides functions for interacting with Wiki's on the
2222
LabKey Server.
2323
"""
24+
from __future__ import unicode_literals
2425
import json
2526
from labkey.utils import build_url, handle_response
2627
from requests.exceptions import SSLError

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
from setuptools import setup
2424

2525
packages = [
26-
'labkey'
26+
'labkey',
27+
'labkey.unsupported'
2728
]
2829

2930
with open('labkey/__init__.py', 'r') as fd:

0 commit comments

Comments
 (0)