├── .coveragerc ├── .gitattributes ├── .github ├── dependabot.yaml └── workflows │ ├── ci.yaml │ ├── copywrite.yaml │ ├── docs.yaml │ ├── release.yaml │ ├── update_pip.yaml │ └── zizmor.yaml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSES ├── Apache-2.0.txt └── MIT.txt ├── NOTES.md ├── README.md ├── REUSE.toml ├── codecov.yml ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── _static │ └── .gitignore │ ├── api.rst │ ├── changelog.md │ ├── command.rst │ ├── conf.py │ ├── faq.rst │ ├── index.rst │ ├── metadata.rst │ ├── plugins.rst │ ├── transition.rst │ └── user_guide.rst ├── mypy.ini ├── noxfile.py ├── pyproject.toml ├── pytest.ini ├── scripts ├── download_pip.py └── get_pyside6_files.py ├── src └── rez_pip │ ├── __init__.py │ ├── __main__.py │ ├── cli.py │ ├── compat.py │ ├── data │ ├── __init__.py │ ├── patches │ │ ├── __init__.py │ │ ├── pyside6_6_0_0_win_dll_path.patch │ │ ├── pyside6_6_1_0_win_dll_path.patch │ │ ├── pyside6_6_2_4_win_dll_path.patch │ │ ├── pyside6_6_3_0_win_dll_path.patch │ │ ├── pyside6_6_7_3_win_dll_path.patch │ │ └── pyside6_6_8_1_win_dll_path.patch │ └── pip.pyz │ ├── download.py │ ├── exceptions.py │ ├── install.py │ ├── patch.py │ ├── pip.py │ ├── plugins │ ├── PySide6.py │ ├── __init__.py │ └── shiboken6.py │ ├── rez.py │ └── utils.py ├── tests ├── __init__.py ├── conftest.py ├── data │ └── src_packages │ │ ├── console_scripts │ │ ├── pyproject.toml │ │ └── src │ │ │ └── console_scripts │ │ │ └── __init__.py │ │ ├── package_a │ │ ├── pyproject.toml │ │ └── src │ │ │ └── package_a │ │ │ └── __init__.py │ │ └── package_b │ │ ├── pyproject.toml │ │ └── src │ │ └── package_b │ │ └── __init__.py ├── plugins │ ├── __init__.py │ ├── test_plugins.py │ ├── test_pyside6.py │ ├── test_shiboken6.py │ └── utils.py ├── requirements.txt ├── sitecustomize.py ├── test_cli.py ├── test_download.py ├── test_install.py ├── test_integration.py ├── test_pip.py ├── test_rez.py ├── test_utils.py └── utils.py └── zizmor.yml /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/copywrite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/.github/workflows/copywrite.yaml -------------------------------------------------------------------------------- /.github/workflows/docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/.github/workflows/docs.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/update_pip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/.github/workflows/update_pip.yaml -------------------------------------------------------------------------------- /.github/workflows/zizmor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/.github/workflows/zizmor.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/NOTES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/REUSE.toml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/docs/source/changelog.md -------------------------------------------------------------------------------- /docs/source/command.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/docs/source/command.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/docs/source/faq.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/metadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/docs/source/metadata.rst -------------------------------------------------------------------------------- /docs/source/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/docs/source/plugins.rst -------------------------------------------------------------------------------- /docs/source/transition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/docs/source/transition.rst -------------------------------------------------------------------------------- /docs/source/user_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/docs/source/user_guide.rst -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/mypy.ini -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/pytest.ini -------------------------------------------------------------------------------- /scripts/download_pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/scripts/download_pip.py -------------------------------------------------------------------------------- /scripts/get_pyside6_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/scripts/get_pyside6_files.py -------------------------------------------------------------------------------- /src/rez_pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/__init__.py -------------------------------------------------------------------------------- /src/rez_pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/__main__.py -------------------------------------------------------------------------------- /src/rez_pip/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/cli.py -------------------------------------------------------------------------------- /src/rez_pip/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/compat.py -------------------------------------------------------------------------------- /src/rez_pip/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/rez_pip/data/patches/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/rez_pip/data/patches/pyside6_6_0_0_win_dll_path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/data/patches/pyside6_6_0_0_win_dll_path.patch -------------------------------------------------------------------------------- /src/rez_pip/data/patches/pyside6_6_1_0_win_dll_path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/data/patches/pyside6_6_1_0_win_dll_path.patch -------------------------------------------------------------------------------- /src/rez_pip/data/patches/pyside6_6_2_4_win_dll_path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/data/patches/pyside6_6_2_4_win_dll_path.patch -------------------------------------------------------------------------------- /src/rez_pip/data/patches/pyside6_6_3_0_win_dll_path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/data/patches/pyside6_6_3_0_win_dll_path.patch -------------------------------------------------------------------------------- /src/rez_pip/data/patches/pyside6_6_7_3_win_dll_path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/data/patches/pyside6_6_7_3_win_dll_path.patch -------------------------------------------------------------------------------- /src/rez_pip/data/patches/pyside6_6_8_1_win_dll_path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/data/patches/pyside6_6_8_1_win_dll_path.patch -------------------------------------------------------------------------------- /src/rez_pip/data/pip.pyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/data/pip.pyz -------------------------------------------------------------------------------- /src/rez_pip/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/download.py -------------------------------------------------------------------------------- /src/rez_pip/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/exceptions.py -------------------------------------------------------------------------------- /src/rez_pip/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/install.py -------------------------------------------------------------------------------- /src/rez_pip/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/patch.py -------------------------------------------------------------------------------- /src/rez_pip/pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/pip.py -------------------------------------------------------------------------------- /src/rez_pip/plugins/PySide6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/plugins/PySide6.py -------------------------------------------------------------------------------- /src/rez_pip/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/plugins/__init__.py -------------------------------------------------------------------------------- /src/rez_pip/plugins/shiboken6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/plugins/shiboken6.py -------------------------------------------------------------------------------- /src/rez_pip/rez.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/rez.py -------------------------------------------------------------------------------- /src/rez_pip/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/src/rez_pip/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/src_packages/console_scripts/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/data/src_packages/console_scripts/pyproject.toml -------------------------------------------------------------------------------- /tests/data/src_packages/console_scripts/src/console_scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/data/src_packages/console_scripts/src/console_scripts/__init__.py -------------------------------------------------------------------------------- /tests/data/src_packages/package_a/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/data/src_packages/package_a/pyproject.toml -------------------------------------------------------------------------------- /tests/data/src_packages/package_a/src/package_a/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/data/src_packages/package_a/src/package_a/__init__.py -------------------------------------------------------------------------------- /tests/data/src_packages/package_b/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/data/src_packages/package_b/pyproject.toml -------------------------------------------------------------------------------- /tests/data/src_packages/package_b/src/package_b/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/data/src_packages/package_b/src/package_b/__init__.py -------------------------------------------------------------------------------- /tests/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/plugins/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/plugins/test_plugins.py -------------------------------------------------------------------------------- /tests/plugins/test_pyside6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/plugins/test_pyside6.py -------------------------------------------------------------------------------- /tests/plugins/test_shiboken6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/plugins/test_shiboken6.py -------------------------------------------------------------------------------- /tests/plugins/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/plugins/utils.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/sitecustomize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/sitecustomize.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/test_download.py -------------------------------------------------------------------------------- /tests/test_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/test_install.py -------------------------------------------------------------------------------- /tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/test_integration.py -------------------------------------------------------------------------------- /tests/test_pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/test_pip.py -------------------------------------------------------------------------------- /tests/test_rez.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/test_rez.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/tests/utils.py -------------------------------------------------------------------------------- /zizmor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanChristopheMorinPerso/rez-pip/HEAD/zizmor.yml --------------------------------------------------------------------------------