From e3971c995e7ed5bb6d29d14427f2bc55670bab8d Mon Sep 17 00:00:00 2001 From: Ryan Holmes Date: Mon, 4 Mar 2019 19:53:19 -0500 Subject: [PATCH] Fix windows build to use effect rollups --- .appveyor.yml | 2 ++ pyfa.spec | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 821bbe7d3..8c740b418 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -61,6 +61,8 @@ before_build: - ps: $env:PYFA_VERSION = (python ./scripts/dump_version.py) - ps: echo("pyfa version ") - ps: echo ($env:PYFA_VERSION) + - ps: python ./scripts/effect_rollup.py + build_script: - ECHO "Build pyfa:" diff --git a/pyfa.spec b/pyfa.spec index d3156bb80..4f4dda6c7 100644 --- a/pyfa.spec +++ b/pyfa.spec @@ -55,7 +55,7 @@ import_these = [ ] # Walk directories that do dynamic importing -paths = ('eos/effects', 'eos/db/migrations', 'service/conversions') +paths = ('eos/db/migrations', 'service/conversions') for root, folders, files in chain.from_iterable(os.walk(path) for path in paths): for file_ in files: if file_.endswith(".py") and not file_.startswith("_"):