forked from spacetelescope/jdaviz
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Debug standalone build (spacetelescope#2389)
* Testing longer timeout for Voila step * Try to give this PR secrets access * Try to give this PR secrets access * Going to just push to this branch... * Remove max Voila pin * Try max pinning jsonschema * Try older asdf as well * Remove voila max pin (again) * Add hook file for asdf * Try unpinning asdf with hooks file * Add hook for jupyter_events * Try adding browser * Try adding browser * Remove version call * Update page test targets * Remove playwright test to get standalone artifact * Add test back in now that I confirmed I see this locally * This is working locally now.... * We do want theme-light after all * Maybe it does need this?? * Take and upload screenshot artifact * Fix workflow error * Add test dependencies to get pysiaf * Try max pinning Voila again * Try only macos * Log jdaviz output * Add jupyter_server hook * Add ubuntu and windows back in now that macos is working * Remove debugging code/workflow steps * Remove chrome setup, rename test file * Remove pysiaf entry point here * Remove debugging branch from workflow file
- Loading branch information
Showing
10 changed files
with
27 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from PyInstaller.utils.hooks import collect_data_files, copy_metadata | ||
|
||
datas = collect_data_files('asdf') | ||
datas += copy_metadata('asdf') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
from PyInstaller.utils.hooks import collect_data_files, copy_metadata | ||
from PyInstaller.utils.hooks import collect_data_files, copy_metadata, collect_submodules | ||
|
||
hiddenimports = collect_submodules("jdaviz") | ||
datas = collect_data_files('jdaviz') | ||
datas += copy_metadata('jdaviz') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from PyInstaller.utils.hooks import collect_data_files, copy_metadata | ||
|
||
datas = collect_data_files('jupyter_events') | ||
datas += copy_metadata('jupyter_events') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from PyInstaller.utils.hooks import collect_submodules, collect_data_files | ||
|
||
datas = collect_data_files('jupyter_server') | ||
hiddenimports = collect_submodules("jupyter_server") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from PyInstaller.utils.hooks import collect_data_files, copy_metadata | ||
|
||
datas = collect_data_files('pysiaf') | ||
datas += copy_metadata('pysiaf') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from PyInstaller.utils.hooks import collect_data_files, copy_metadata | ||
|
||
datas = collect_data_files('specreduce') | ||
datas += copy_metadata('specreduce') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters