-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Investigating OS Error during HTML file write #78
Comments
Yep, I think you've found the culprit! Cross-linking to caracal-pipeline/caracal#1200 |
Yay ! |
Yeah, |
* Fix Correlation selection.. again * Enforce int on numcores * Make default n_cores int * Change temp dir location for html plots An attempt at #78 * Delete the --gaintype arguement Change -kx, --k-xaxis to -x, --xaxis for xaxis selection for any table Add -y, --yaxis as alternative options to -d, --doplot Remove choice restrictions on doplot and xaxis * Update docs and changelog * Allow Kcross, Df, Xf tables Allow any combination of ys * Change to minor release version 0.5.0
This investigation led to this bokeh commit and to the package tempfile
This stack abuse post gives some further information.
Tempfile is a default python package that scans the following list of directories :
To get the default temp files location:
tempfile.gettempdir()
To set tempdir:
tempfile.tempdir = "/bla/bla"
I'm going to change the temp dir location if output is HTML to see if this helps
The text was updated successfully, but these errors were encountered: