Skip to content

Commit

Permalink
Importing names from __init__ is dangerous..
Browse files Browse the repository at this point in the history
  • Loading branch information
thebjorn committed Jun 19, 2019
1 parent 0f67d1f commit c1a4656
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '1.1.5'
version = '1.1.6'
# The full version, including alpha/beta/rc tags.
release = '1.1.5'
release = '1.1.6'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
Topic :: Software Development :: Libraries
"""

version = '1.1.5'
version = '1.1.6'


class PyTest(TestCommand):
Expand Down
3 changes: 2 additions & 1 deletion tests/test_yamldir.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
import warnings

import pytest
from yamldirs import create_files, UnknownType
from yamldirs import create_files
from yamldirs.filemaker import UnknownType


def tree(root):
Expand Down
4 changes: 2 additions & 2 deletions yamldirs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

__version__ = '1.1.5'
__version__ = '1.1.6'

from .filemaker import create_files, UnknownType
from .filemaker import create_files

2 changes: 0 additions & 2 deletions yamldirs/filemaker.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# -*- coding: utf-8 -*-
from __future__ import print_function
import textwrap
import warnings
from contextlib import contextmanager
import os
import shutil
Expand Down

0 comments on commit c1a4656

Please sign in to comment.