diff --git a/admin-tools/pyenv-versions b/admin-tools/pyenv-versions index bf2eaa6..405a4d5 100644 --- a/admin-tools/pyenv-versions +++ b/admin-tools/pyenv-versions @@ -5,4 +5,4 @@ if [[ $0 == ${BASH_SOURCE[0]} ]] ; then echo "This script should be *sourced* rather than run directly through bash" exit 1 fi -export PYVERSIONS='3.6.15 3.7.16 3.8.18 3.9.18 3.10.13 pyston-2.3.5 3.11.7 3.12.1' +export PYVERSIONS='3.8.18 3.9.18 3.10.13 pyston-2.3.5 3.11.8 3.12.2' diff --git a/setup.py b/setup.py index 3bd0f75..8f0daa0 100644 --- a/setup.py +++ b/setup.py @@ -75,7 +75,7 @@ def read(*rnames): EXTRAS_REQUIRE[kind] = extras_require -def subdirs(root:str, file="*.*", depth=10): +def subdirs(root: str, file="*.*", depth=10): for k in range(depth): yield root + "*/" * k + file