Skip to content
Snippets Groups Projects

Switch PyMC3 to PyMC (which is the new name starting from PyMC v4.0.0)

Merged Matthew David Pitkin requested to merge matthew-pitkin/bilby:pymc3_to_pymc4 into master
All threads resolved!
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -87,7 +87,7 @@ def signal_wrapper(method):
old_int = signal.signal(signal.SIGINT, self.write_current_state_and_exit)
old_alarm = signal.signal(signal.SIGALRM, self.write_current_state_and_exit)
_set = True
except AttributeError:
except (AttributeError, ValueError):
_set = False
logger.debug(
"Setting signal attributes unavailable on this system. "
Loading