Skip to content

Commit

Permalink
shortened filepath for installer build
Browse files Browse the repository at this point in the history
  • Loading branch information
tg359 authored and Fraser Greenroyd committed Oct 11, 2022
1 parent 2187f85 commit 8dc0047
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 52 deletions.
3 changes: 1 addition & 2 deletions LadybugTools_Engine/LadybugTools_Engine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,6 @@
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\simulate\working_directory.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\simulate\__init__.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\cfd\cfd_directory.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\cfd\cfd_result.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\cfd\load_cfd_extract.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\cfd\load_cfd_results.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\cfd\spatial_wind_speed.py" />
Expand Down Expand Up @@ -221,7 +220,6 @@
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\moisture_distribution\load_moisture_sources.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\moisture_distribution\moisture_directory.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\moisture_distribution\moisture_source.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\moisture_distribution\unique_wind_speed_direction.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\moisture_distribution\__init__.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\sky_view_pov.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\spatial_comfort.py" />
Expand Down Expand Up @@ -297,6 +295,7 @@
<Content Include="Python\src\ladybugtools_toolkit\ladybug_extension\epw\sun_position_list.py" />
<Content Include="Python\src\ladybugtools_toolkit\ladybug_extension\epw\to_dataframe.py" />
<Content Include="Python\src\ladybugtools_toolkit\ladybug_extension\epw\wet_bulb_temperature.py" />
<Content Include="Python\src\ladybugtools_toolkit\ladybug_extension\epw\unique_wind_speed_direction.py" />
<Content Include="Python\src\ladybugtools_toolkit\ladybug_extension\epw\__init__.py" />
<Content Include="Python\src\ladybugtools_toolkit\ladybug_extension\header\from_string.py" />
<Content Include="Python\src\ladybugtools_toolkit\ladybug_extension\header\from_multiindex.py" />
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,14 @@
import numpy as np
import pandas as pd
from ladybug.epw import EPW
from ladybugtools_toolkit.external_comfort.spatial.cfd.load_cfd_results import (
load_cfd_results,
)
from ladybugtools_toolkit.external_comfort.spatial.moisture_distribution.unique_wind_speed_direction import (
unique_wind_speed_direction,
)
from ladybugtools_toolkit.ladybug_extension.datacollection.to_series import to_series
from scipy.interpolate import interp1d


from ladybugtools_toolkit import analytics
from ladybugtools_toolkit.external_comfort.spatial.cfd.load_cfd_results import \
load_cfd_results
from ladybugtools_toolkit.ladybug_extension.datacollection.to_series import \
to_series
from ladybugtools_toolkit.ladybug_extension.epw.unique_wind_speed_direction import \
unique_wind_speed_direction
from scipy.interpolate import interp1d


@analytics
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
import numpy as np
import pandas as pd
from ladybug.epw import EPW
from ladybugtools_toolkit.external_comfort.spatial.moisture_distribution.unique_wind_speed_direction import (
unique_wind_speed_direction,
)
from ladybugtools_toolkit.helpers.angle_from_north import angle_from_north
from ladybugtools_toolkit.helpers.proximity_decay import proximity_decay
from ladybugtools_toolkit.ladybug_extension.datacollection.to_series import to_series
from ladybugtools_toolkit.ladybug_extension.datacollection.to_series import \
to_series
from ladybugtools_toolkit.ladybug_extension.epw.unique_wind_speed_direction import \
unique_wind_speed_direction
from scipy.spatial.distance import cdist


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@

import pandas as pd
from ladybug.epw import EPW
from ladybugtools_toolkit.ladybug_extension.datacollection.to_series import to_series


from ladybugtools_toolkit import analytics
from ladybugtools_toolkit.ladybug_extension.datacollection.to_series import \
to_series


@analytics
Expand Down

0 comments on commit 8dc0047

Please sign in to comment.