2024.06.04
changelog
- add arg
--download-python
: interactive download standalone python interpreter (https://www.github.com/indygreg/python-build-standalone) - custom
--rm-patterns
to remove useless files . fixed #28 #29 - add
pip_install_target
to install requirements and insert tosys.path
, cache supportfrom zipapps import pip_install_target
pip_install_target(Path("./mock_dir"), ["six"], force=False, sys_path=0); import six
test env update:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.x"]
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.x"]
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.x"]