Skip to content

Commit 37ecf5e

Browse files
authored
Version 0.9.1 (#47)
1 parent 9fbedce commit 37ecf5e

19 files changed

+435
-492
lines changed

CHANGES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
Version 0.9.1
5+
-------------
6+
7+
- Fixing local imports not working when installed
8+
49
Version 0.9.0
510
-------------
611

reusables/__init__.py

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,19 @@
55
#
66
# Copyright (c) 2014-2017 - Chris Griffith - MIT License
77
from __future__ import absolute_import
8-
from .namespace import *
9-
from .dt import *
10-
from .log import *
11-
from .wrappers import *
12-
from .web import *
13-
from .shared_variables import *
14-
from .cli import *
15-
from .file_operations import *
16-
from .processes import *
17-
from .string_manipulation import *
8+
9+
from reusables.string_manipulation import *
10+
from reusables.cli import *
11+
from reusables.dt import *
12+
from reusables.file_operations import *
13+
from reusables.log import *
14+
from reusables.namespace import *
15+
from reusables.tasker import *
16+
from reusables.process_helpers import *
17+
from reusables.shared_variables import *
18+
from reusables.tasker import *
19+
from reusables.web import *
20+
from reusables.wrappers import *
1821

1922
__author__ = "Chris Griffith"
20-
__version__ = "0.9.0"
23+
__version__ = "0.9.1"

reusables/cli.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,17 @@
55
#
66
# Copyright (c) 2014-2017 - Chris Griffith - MIT License
77
""" Functions to only be in an interactive instances to ease life. """
8+
from __future__ import absolute_import
89
import os
910
import logging
1011
import shutil
1112
from collections import deque
1213

13-
from .shared_variables import *
14-
from .processes import run
15-
from .shared_variables import win_based
16-
from .file_operations import find_files_list
17-
from .log import add_stream_handler
14+
from reusables.shared_variables import *
15+
from reusables.process_helpers import run
16+
from reusables.shared_variables import win_based
17+
from reusables.file_operations import find_files_list
18+
from reusables.log import add_stream_handler
1819

1920
__all__ = ['cmd', 'pushd', 'popd', 'pwd', 'cd', 'ls',
2021
'find', 'head', 'cat', 'tail', 'cp']

reusables/dt.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
# Part of the Reusables package.
55
#
66
# Copyright (c) 2014-2017 - Chris Griffith - MIT License
7+
from __future__ import absolute_import
78
import datetime
89
import re
910

10-
from .namespace import Namespace
11+
from reusables.namespace import Namespace
1112

1213
__all__ = ['dt_exps', 'datetime_regex', 'now', 'datetime_format',
1314
'datetime_from_iso', 'dtf', 'dtiso']

0 commit comments

Comments
 (0)