Skip to content

Commit

Permalink
allow to run on 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthieuDartiailh committed Oct 27, 2024
1 parent d1c77b0 commit b50cc68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/frameworks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion src/bytecode/instr.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

#: Opcodes taking 2 arguments (highest 4 bits and lowest 4 bits)
DUAL_ARG_OPCODES: Tuple[int, ...] = ()
DUAL_ARG_OPCODES_SINGLE_OPS: dict[int, tuple[str, str]] = {}
DUAL_ARG_OPCODES_SINGLE_OPS: Dict[int, Tuple[str, str]] = {}
if PY313:
DUAL_ARG_OPCODES = (
_opcode.opmap["LOAD_FAST_LOAD_FAST"],
Expand Down

0 comments on commit b50cc68

Please sign in to comment.