Skip to content

Commit

Permalink
Fix range of supported versions for marshalled files
Browse files Browse the repository at this point in the history
  • Loading branch information
zrax committed Jun 4, 2023
1 parent 409f175 commit 72c5f87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyc_module.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ bool PycModule::isSupportedVersion(int major, int minor)
case 2:
return (minor >= 0 && minor <= 7);
case 3:
return (minor >= 0 && minor <= 10);
return (minor >= 0 && minor <= 11);
default:
return false;
}
Expand Down

0 comments on commit 72c5f87

Please sign in to comment.