Skip to content

Commit

Permalink
Merge pull request #40 from pepkit/dev
Browse files Browse the repository at this point in the history
0.4.0
  • Loading branch information
nsheff authored Jul 31, 2019
2 parents 325cc88 + 4aee027 commit 20ed34c
Show file tree
Hide file tree
Showing 31 changed files with 3,388 additions and 515 deletions.
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
include divvy/submit_templates/*
include divvy/default_config/*
include divvy/default_config/submit_templates/*
include requirements/*
include README.md
include docs/img/divvy_logo.svg
8 changes: 2 additions & 6 deletions divvy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""

import logging
import logmuse
from ._version import __version__
from .compute import ComputingConfiguration
from .const import *
Expand All @@ -16,8 +16,4 @@
__classes__ = ["ComputingConfiguration"]
__all__ = __classes__ + [write_submit_script.__name__]

# Ensure that we have a handler and don't get a logging exception.
# Note that this was originally with looper.models.
_LOGGER = logging.getLogger(__name__)
if not logging.getLogger().handlers:
_LOGGER.addHandler(logging.NullHandler())
logmuse.init_logger("divvy")
2 changes: 1 addition & 1 deletion divvy/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.3"
__version__ = "0.4.0"
Loading

0 comments on commit 20ed34c

Please sign in to comment.