Closed pkucmus closed 1 month ago
I have hatch installed with pipx, and when I try:
hatch python install 3.13
I get
Unknown distributions: 3.13
I see that cpython-3.13.0+20241008-aarch64-apple-darwin-install_only.tar.gz is here: https://github.com/indygreg/python-build-standalone/releases/tag/20241008 but it's like it's not even trying, maybe there's some cache for me to kill?
cpython-3.13.0+20241008-aarch64-apple-darwin-install_only.tar.gz
hatch python show also does not print any available installations:
hatch python show
hatch python show Installed ┏━━━━━━━━━━┳━━━━━━━━━┓ ┃ Name ┃ Version ┃ ┡━━━━━━━━━━╇━━━━━━━━━┩ │ 3.8 │ 3.8.19 │ ├──────────┼─────────┤ │ 3.9 │ 3.9.19 │ ├──────────┼─────────┤ │ 3.10 │ 3.10.14 │ ├──────────┼─────────┤ │ 3.11 │ 3.11.9 │ ├──────────┼─────────┤ │ 3.12 │ 3.12.3 │ ├──────────┼─────────┤ │ pypy2.7 │ 7.3.15 │ ├──────────┼─────────┤ │ pypy3.9 │ 7.3.15 │ ├──────────┼─────────┤ │ pypy3.10 │ 7.3.15 │ └──────────┴─────────┘
Thank you.
Just found out that hatch test -a will work if I have a 3.13 installed with pyenv (I guess), hatch python show still does not recognize 3.13 but hatch-test.py3.13 works.
hatch test -a
hatch-test.py3.13
https://github.com/pypa/hatch/releases/tag/hatch-v1.13.0
I have hatch installed with pipx, and when I try:
I get
I see that
cpython-3.13.0+20241008-aarch64-apple-darwin-install_only.tar.gz
is here: https://github.com/indygreg/python-build-standalone/releases/tag/20241008 but it's like it's not even trying, maybe there's some cache for me to kill?hatch python show
also does not print any available installations:Thank you.