dragonfly-radiance 0.4.0__tar.gz → 0.4.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dragonfly-radiance might be problematic. Click here for more details.
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/PKG-INFO +2 -2
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance/properties/model.py +3 -1
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance.egg-info/PKG-INFO +2 -2
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance.egg-info/requires.txt +1 -1
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/requirements.txt +1 -1
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/CODE_OF_CONDUCT.md +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/CONTRIBUTING.md +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/LICENSE +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/MANIFEST.in +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/README.md +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dev-requirements.txt +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance/__init__.py +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance/__main__.py +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance/_extend_dragonfly.py +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance/cli/__init__.py +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance/cli/translate.py +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance/gridpar.py +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance/properties/__init__.py +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance/properties/building.py +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance/properties/context.py +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance/properties/room2d.py +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance/properties/story.py +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance.egg-info/SOURCES.txt +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance.egg-info/dependency_links.txt +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance.egg-info/entry_points.txt +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance.egg-info/top_level.txt +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/setup.cfg +0 -0
- {dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dragonfly-radiance
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.1
|
|
4
4
|
Summary: Dragonfly extension for radiance simulation.
|
|
5
5
|
Home-page: https://github.com/ladybug-tools/dragonfly-radiance
|
|
6
6
|
Author: Ladybug Tools
|
|
@@ -14,7 +14,7 @@ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
|
14
14
|
Classifier: Operating System :: OS Independent
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
License-File: LICENSE
|
|
17
|
-
Requires-Dist: dragonfly-core==1.65.
|
|
17
|
+
Requires-Dist: dragonfly-core==1.65.2
|
|
18
18
|
Requires-Dist: honeybee-radiance==1.66.167
|
|
19
19
|
|
|
20
20
|

|
{dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance/properties/model.py
RENAMED
|
@@ -170,7 +170,9 @@ class ModelRadianceProperties(object):
|
|
|
170
170
|
msgs = []
|
|
171
171
|
# perform checks for specific radiance simulation rules
|
|
172
172
|
# output a final report of errors or raise an exception
|
|
173
|
-
full_msgs = [msg for msg in msgs if msg
|
|
173
|
+
full_msgs = [msg for msg in msgs if msg]
|
|
174
|
+
if detailed:
|
|
175
|
+
return [m for msg in full_msgs for m in msg]
|
|
174
176
|
full_msg = '\n'.join(full_msgs)
|
|
175
177
|
if raise_exception and len(full_msgs) != 0:
|
|
176
178
|
raise ValueError(full_msg)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dragonfly-radiance
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.1
|
|
4
4
|
Summary: Dragonfly extension for radiance simulation.
|
|
5
5
|
Home-page: https://github.com/ladybug-tools/dragonfly-radiance
|
|
6
6
|
Author: Ladybug Tools
|
|
@@ -14,7 +14,7 @@ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
|
14
14
|
Classifier: Operating System :: OS Independent
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
License-File: LICENSE
|
|
17
|
-
Requires-Dist: dragonfly-core==1.65.
|
|
17
|
+
Requires-Dist: dragonfly-core==1.65.2
|
|
18
18
|
Requires-Dist: honeybee-radiance==1.66.167
|
|
19
19
|
|
|
20
20
|

|
{dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance.egg-info/requires.txt
RENAMED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
dragonfly-core==1.65.
|
|
1
|
+
dragonfly-core==1.65.2
|
|
2
2
|
honeybee-radiance==1.66.167
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
dragonfly-core==1.65.
|
|
1
|
+
dragonfly-core==1.65.2
|
|
2
2
|
honeybee-radiance==1.66.167
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance/_extend_dragonfly.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance/properties/__init__.py
RENAMED
|
File without changes
|
{dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance/properties/building.py
RENAMED
|
File without changes
|
{dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance/properties/context.py
RENAMED
|
File without changes
|
{dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance/properties/room2d.py
RENAMED
|
File without changes
|
{dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance/properties/story.py
RENAMED
|
File without changes
|
{dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{dragonfly_radiance-0.4.0 → dragonfly_radiance-0.4.1}/dragonfly_radiance.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|