##// END OF EJS Templates
Drop 3.9 (#14254)...
Drop 3.9 (#14254) According to SPEC-0 this is about time, we thus bump minimal python, shift CI to test from 3.10 to 3.12, mark a curio test as x-fail as curio is not yet compatible with 3.12 but the fix in in trio main. Remove all conditionals that will never execute on 3.10+

File last commit:

r16136:94a4d14e
r28531:eaf3bfc5 merge
Show More
list_pyfiles.ipy
5 lines | 182 B | text/plain | TextLexer
# A simple IPython script that provides Notebook links to .py files in the cwd
from IPython.display import FileLink, display
files =!ls *.py
for f in files:
display(FileLink(f))