Skip to content

Commit

Permalink
Merge branch 'release/2.1.3' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljfarrell committed Aug 26, 2020
2 parents 1ec7acc + 7b1a362 commit 081b425
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions pvtrace/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
__version__ = "2.1.3.dev0"
__version__ = "2.1.3"
"""
Optical ray tracing for luminescent materials and spectral converter photovoltaic devices
"""
import logging

logging.basicConfig(level=logging.DEBUG)
logger = logging.getLogger("pvtrace")
logging.getLogger('trimesh').setLevel(logging.CRITICAL)
logging.getLogger('shapely.geos').setLevel(logging.CRITICAL)
logging.getLogger("trimesh").setLevel(logging.CRITICAL)
logging.getLogger("shapely.geos").setLevel(logging.CRITICAL)


# Import commonly used classes to pvtrace namespace so users don't
Expand Down Expand Up @@ -34,11 +35,7 @@


# material
from .material.component import (
Scatterer,
Absorber,
Luminophore,
)
from .material.component import Scatterer, Absorber, Luminophore
from .material.distribution import Distribution
from .material.material import Material
from .material.surface import (
Expand Down

0 comments on commit 081b425

Please sign in to comment.