Skip to content

Commit

Permalink
use exact python version
Browse files Browse the repository at this point in the history
  • Loading branch information
epassaro committed May 20, 2021
1 parent 2d3a486 commit 835f0e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tardis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
logging.getLogger("py.warnings").addHandler(console_handler)

# ----------------------------------------------------------------------------
# pyne holds Python 3.7 on macOS, but refdata is pickled with protocol 5 (3.8)
# pyne holds Python 3.7 on macOS, but refdata is pickled with protocol 5 (3.8.3)

if sys.version_info < (3, 8):
if sys.version_info < (3, 8, 3):
import pickle5

sys.modules["pickle"] = pickle5

0 comments on commit 835f0e7

Please sign in to comment.