Skip to content

Commit

Permalink
fix(deps): update to the latest version of the recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
mostaphaRoudsari committed Jul 1, 2022
1 parent 6593115 commit 461fe9e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions pollination/three_phase/entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from pollination.honeybee_radiance.translate import CreateRadianceFolderGrid
from pollination.honeybee_radiance.sky import CreateSkyDome, CreateSkyMatrix
from pollination.honeybee_radiance.sun import CreateSunMatrix, ParseSunUpHours
from pollination.honeybee_radiance.multiphase import PrepareDynamic
from pollination.honeybee_radiance.multiphase import PrepareMultiphase

from pollination.path.read import ReadJSONList

Expand Down Expand Up @@ -167,26 +167,26 @@ def create_direct_sky(
}
]

@task(template=PrepareDynamic, needs=[create_rad_folder, generate_sunpath])
@task(template=PrepareMultiphase, needs=[create_rad_folder, generate_sunpath])
def prepare_dynamic(
self, model=create_rad_folder._outputs.model_folder,
sunpath=generate_sunpath._outputs.sunpath, phase=3, cpu_count=cpu_count,
cpus_per_grid=3, min_sensor_count=min_sensor_count, static='include'
):
return [
{
'from': PrepareDynamic()._outputs.scene_folder,
'from': PrepareMultiphase()._outputs.scene_folder,
'to': 'resources/octrees'
},
{
'from': PrepareDynamic()._outputs.grid_folder,
'from': PrepareMultiphase()._outputs.grid_folder,
'to': 'resources/grid'
},
{
'from': PrepareDynamic()._outputs.scene_info
'from': PrepareMultiphase()._outputs.scene_info
},
{
'from': PrepareDynamic()._outputs.two_phase_info
'from': PrepareMultiphase()._outputs.two_phase_info
}
]

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pollination-honeybee-radiance==0.22.9
pollination-honeybee-radiance==0.22.12
pollination-path==0.3.1

0 comments on commit 461fe9e

Please sign in to comment.