You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the pyOpt_optimizer class, we currently use tempfile.mktemp() which is deprecated. We should instead use the existing temp file capabilities of the sqlitedict package.
This fix would involve both the pyOpt_optimizer and History classes, and the temp option should be handled inside the history class instead of delegating the tempfile stuff to the user.
The text was updated successfully, but these errors were encountered:
Description
In the
pyOpt_optimizer
class, we currently usetempfile.mktemp()
which is deprecated. We should instead use the existing temp file capabilities of the sqlitedict package.This fix would involve both the
pyOpt_optimizer
andHistory
classes, and the temp option should be handled inside the history class instead of delegating the tempfile stuff to the user.The text was updated successfully, but these errors were encountered: