dragonfly-schema 1.12.2__tar.gz → 1.12.4__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.
Files changed (31) hide show
  1. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/PKG-INFO +2 -1
  2. dragonfly_schema-1.12.4/dev-requirements.txt +5 -0
  3. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/dragonfly_schema/roof.py +2 -3
  4. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/dragonfly_schema.egg-info/PKG-INFO +2 -1
  5. dragonfly_schema-1.12.4/dragonfly_schema.egg-info/requires.txt +1 -0
  6. dragonfly_schema-1.12.4/requirements.txt +1 -0
  7. dragonfly-schema-1.12.2/dev-requirements.txt +0 -8
  8. dragonfly-schema-1.12.2/dragonfly_schema.egg-info/requires.txt +0 -1
  9. dragonfly-schema-1.12.2/requirements.txt +0 -1
  10. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/.coveragerc +0 -0
  11. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/CODE_OF_CONDUCT.md +0 -0
  12. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/CONTRIBUTING.md +0 -0
  13. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/LICENSE +0 -0
  14. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/MANIFEST.in +0 -0
  15. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/README.md +0 -0
  16. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/docs.py +0 -0
  17. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/dragonfly_schema/__init__.py +0 -0
  18. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/dragonfly_schema/energy/__init__.py +0 -0
  19. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/dragonfly_schema/energy/properties.py +0 -0
  20. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/dragonfly_schema/model.py +0 -0
  21. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/dragonfly_schema/radiance/__init__.py +0 -0
  22. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/dragonfly_schema/radiance/gridpar.py +0 -0
  23. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/dragonfly_schema/radiance/properties.py +0 -0
  24. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/dragonfly_schema/shading_parameter.py +0 -0
  25. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/dragonfly_schema/skylight_parameter.py +0 -0
  26. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/dragonfly_schema/window_parameter.py +0 -0
  27. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/dragonfly_schema.egg-info/SOURCES.txt +0 -0
  28. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/dragonfly_schema.egg-info/dependency_links.txt +0 -0
  29. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/dragonfly_schema.egg-info/top_level.txt +0 -0
  30. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/setup.cfg +0 -0
  31. {dragonfly-schema-1.12.2 → dragonfly_schema-1.12.4}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dragonfly-schema
3
- Version: 1.12.2
3
+ Version: 1.12.4
4
4
  Summary: Dragonfly Data-Model Objects
5
5
  Home-page: https://github.com/ladybug-tools/dragonfly-schema
6
6
  Author: Ladybug Tools
@@ -11,6 +11,7 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
11
11
  Classifier: Operating System :: OS Independent
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
+ Requires-Dist: honeybee-schema==1.58.5
14
15
 
15
16
  [![Build Status](https://travis-ci.com/ladybug-tools/dragonfly-schema.svg?branch=master)](https://travis-ci.com/ladybug-tools/dragonfly-schema)
16
17
  [![Coverage Status](https://coveralls.io/repos/github/ladybug-tools/dragonfly-schema/badge.svg?branch=master)](https://coveralls.io/github/ladybug-tools/dragonfly-schema)
@@ -0,0 +1,5 @@
1
+ pytest==8.3.2
2
+ twine==5.1.1
3
+ wheel==0.44.0
4
+ setuptools==75.1.0
5
+ importlib-metadata==8.5.0
@@ -1,6 +1,5 @@
1
1
  """Geometry for specifying sloped roofs over a Story."""
2
- from pydantic import Field, constr
3
- from typing import List
2
+ from pydantic import Field, constr, conlist
4
3
 
5
4
  from honeybee_schema._base import NoExtraBaseModel
6
5
  from honeybee_schema.model import Face3D
@@ -11,7 +10,7 @@ class RoofSpecification(NoExtraBaseModel):
11
10
 
12
11
  type: constr(regex='^RoofSpecification$') = 'RoofSpecification'
13
12
 
14
- geometry: List[Face3D] = Field(
13
+ geometry: conlist(Face3D, min_items=1) = Field(
15
14
  ...,
16
15
  description='An array of Face3D objects representing the geometry of the '
17
16
  'Roof. None of these geometries should overlap in plan and, together, these '
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dragonfly-schema
3
- Version: 1.12.2
3
+ Version: 1.12.4
4
4
  Summary: Dragonfly Data-Model Objects
5
5
  Home-page: https://github.com/ladybug-tools/dragonfly-schema
6
6
  Author: Ladybug Tools
@@ -11,6 +11,7 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
11
11
  Classifier: Operating System :: OS Independent
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
+ Requires-Dist: honeybee-schema==1.58.5
14
15
 
15
16
  [![Build Status](https://travis-ci.com/ladybug-tools/dragonfly-schema.svg?branch=master)](https://travis-ci.com/ladybug-tools/dragonfly-schema)
16
17
  [![Coverage Status](https://coveralls.io/repos/github/ladybug-tools/dragonfly-schema/badge.svg?branch=master)](https://coveralls.io/github/ladybug-tools/dragonfly-schema)
@@ -0,0 +1 @@
1
+ honeybee-schema==1.58.5
@@ -0,0 +1 @@
1
+ honeybee-schema==1.58.5
@@ -1,8 +0,0 @@
1
- coverage==5.5
2
- coveralls==2.2.0
3
- pytest==6.2.4
4
- pytest-cov==2.12.0
5
- twine==3.4.1
6
- wheel==0.38.1
7
- setuptools==65.5.1
8
- importlib-metadata==4.3.1
@@ -1 +0,0 @@
1
- honeybee-schema==1.58.4
@@ -1 +0,0 @@
1
- honeybee-schema==1.58.4