Skip to content
This repository has been archived by the owner on Mar 28, 2019. It is now read-only.

Commit

Permalink
Add EnvBase to exports
Browse files Browse the repository at this point in the history
Bump version: 1.2.1 → 1.2.2
  • Loading branch information
jbasko committed Jan 16, 2018
1 parent 40f71ba commit 494fb67
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.2.1
current_version = 1.2.2
commit = true
tag = false

Expand Down
7 changes: 4 additions & 3 deletions runtime_context/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
__version__ = '1.2.1'
__version__ = '1.2.2'

from .env2 import runtime_context_env
from .env import EnvBase, runtime_context_env
from .runtime_context import RuntimeContext

__all__ = [
'RuntimeContext',
'runtime_context_env',
'EnvBase',
'RuntimeContext',
]
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_env2.py → tests/test_env.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest

from runtime_context.env2 import runtime_context_env
from runtime_context import runtime_context_env


def test_all():
Expand Down

0 comments on commit 494fb67

Please sign in to comment.