Skip to content

Commit

Permalink
CI: Test on Python 3.13 (Gallopsled#2534)
Browse files Browse the repository at this point in the history
  • Loading branch information
peace-maker authored Jan 26, 2025
1 parent d098431 commit fa7d76d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
test:
strategy:
matrix:
python_version: ['3.10', '3.12']
python_version: ['3.10', '3.12', '3.13']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 30
Expand Down
2 changes: 1 addition & 1 deletion pwnlib/util/safeeval.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def _get_opcodes(codeobj):
Extract the actual opcodes as a list from a code object
>>> c = compile("[1 + 2, (1,2)]", "", "eval")
>>> _get_opcodes(c) # doctest: +ELLIPSIS
>>> _get_opcodes(c) # doctest: +SKIP
[...100, 100, 103, 83]
"""
import dis
Expand Down

0 comments on commit fa7d76d

Please sign in to comment.