├── .aicoe-ci.yaml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ ├── major-release.md │ ├── minor-release.md │ ├── patch-release.md │ └── redeliver_container_image.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── main.yml │ ├── prep_windows_matrix.py │ ├── update_pip.yml │ ├── update_supported_pip.sh │ └── windows.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .prow.yaml ├── .thoth.yaml ├── CHANGELOG.md ├── LICENSE ├── OWNERS ├── README.rst ├── micropipenv.py ├── mypy.ini ├── pyproject.toml ├── pytest.ini ├── requirements.in ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── conftest.py ├── data │ ├── install │ │ ├── invalid_pipfile │ │ │ ├── Pipfile │ │ │ └── Pipfile.lock │ │ ├── invalid_poetry_lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── invalid_pyproject_toml │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── pip-tools │ │ │ ├── _Pipfile.lock │ │ │ └── requirements.txt │ │ ├── pip-tools_direct_reference │ │ │ └── micropipenv-0.0.0.tar.gz │ │ ├── pipenv │ │ │ ├── Pipfile │ │ │ └── Pipfile.lock │ │ ├── pipenv_editable │ │ │ ├── Pipfile.lock │ │ │ └── setup │ │ ├── pipenv_env_vars │ │ │ ├── Pipfile │ │ │ └── Pipfile.lock │ │ ├── pipenv_env_vars_default │ │ │ ├── Pipfile │ │ │ └── Pipfile.lock │ │ ├── pipenv_error_hash │ │ │ ├── Pipfile │ │ │ └── Pipfile.lock │ │ ├── pipenv_error_python │ │ │ ├── Pipfile │ │ │ └── Pipfile.lock │ │ ├── pipenv_file │ │ │ └── Pipfile.lock │ │ ├── pipenv_iter_index │ │ │ └── Pipfile.lock │ │ ├── pipenv_url │ │ │ ├── Pipfile │ │ │ └── Pipfile.lock │ │ ├── pipenv_vcs │ │ │ └── Pipfile.lock │ │ ├── pipenv_vcs_editable │ │ │ └── Pipfile.lock │ │ ├── pipenv_vcs_subdir │ │ │ └── Pipfile.lock │ │ ├── poetry │ │ │ ├── _Pipfile.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_complex_dep_tree │ │ │ ├── _Pipfile.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_directory │ │ │ ├── _Pipfile.lock │ │ │ ├── poetry.lock │ │ │ ├── pyproject.toml │ │ │ └── testproject │ │ │ │ ├── pyproject.toml │ │ │ │ ├── setup.cfg │ │ │ │ └── testproject.py │ │ ├── poetry_directory_poetry │ │ │ ├── _Pipfile.lock │ │ │ ├── poetry.lock │ │ │ ├── pyproject.toml │ │ │ └── testproject │ │ │ │ ├── poetry.lock │ │ │ │ ├── pyproject.toml │ │ │ │ └── testproject.py │ │ ├── poetry_lock_format_2 │ │ │ ├── _Pipfile.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_markers_extra │ │ ├── poetry_secondary_source │ │ │ ├── _Pipfile.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_url │ │ │ ├── _Pipfile.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_vcs │ │ │ ├── _Pipfile.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_vcs_subdir │ │ │ ├── _Pipfile.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── requirements │ │ │ └── requirements.txt │ │ ├── requirements_editable │ │ │ ├── main │ │ │ ├── requirements.txt │ │ │ └── setup │ │ ├── requirements_editable_unlocked │ │ │ ├── main │ │ │ ├── requirements.txt │ │ │ └── setup │ │ ├── requirements_svn │ │ │ └── requirements.txt │ │ └── requirements_vcs │ │ │ └── requirements.txt │ ├── parse │ │ ├── pip-tools │ │ │ ├── Pipfile.lock │ │ │ └── requirements.txt │ │ ├── pip-tools_no_index │ │ │ └── requirements.txt │ │ ├── pipenv │ │ │ ├── Pipfile │ │ │ └── Pipfile.lock │ │ ├── poetry │ │ │ ├── Pipfile.lock │ │ │ ├── Pipfile_no_default.lock │ │ │ ├── Pipfile_no_dev.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry2 │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_1_5 │ │ │ ├── Pipfile.lock │ │ │ ├── Pipfile_no_default.lock │ │ │ ├── Pipfile_no_dev.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_default_dev_diff │ │ │ ├── Pipfile.lock │ │ │ ├── Pipfile_no_default.lock │ │ │ ├── Pipfile_no_dev.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_default_source_legacy │ │ │ ├── Pipfile.lock │ │ │ ├── Pipfile_no_default.lock │ │ │ ├── Pipfile_no_dev.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_endless_loop │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_legacy_source_and_groups │ │ │ ├── Pipfile.lock │ │ │ ├── Pipfile_no_default.lock │ │ │ ├── Pipfile_no_dev.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_lock_format_2 │ │ │ ├── Pipfile.lock │ │ │ ├── Pipfile_no_default.lock │ │ │ ├── Pipfile_no_dev.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_markers_direct │ │ │ ├── Pipfile.lock │ │ │ ├── Pipfile_no_default.lock │ │ │ ├── Pipfile_no_dev.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_markers_extra │ │ │ ├── Pipfile.lock │ │ │ ├── Pipfile_no_default.lock │ │ │ ├── Pipfile_no_dev.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_markers_indirect │ │ │ ├── Pipfile.lock │ │ │ ├── Pipfile_no_default.lock │ │ │ ├── Pipfile_no_dev.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_markers_order │ │ │ ├── Pipfile.lock │ │ │ ├── Pipfile_no_default.lock │ │ │ ├── Pipfile_no_dev.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_markers_skip │ │ │ ├── Pipfile.lock │ │ │ ├── Pipfile_no_default.lock │ │ │ ├── Pipfile_no_dev.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_markers_transitive_deps │ │ │ ├── Pipfile.lock │ │ │ ├── Pipfile_no_default.lock │ │ │ ├── Pipfile_no_dev.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_normalized_names │ │ │ ├── Pipfile.lock │ │ │ ├── Pipfile_no_default.lock │ │ │ ├── Pipfile_no_dev.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_secondary_source │ │ │ ├── Pipfile.lock │ │ │ ├── Pipfile_no_default.lock │ │ │ ├── Pipfile_no_dev.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_source_directory │ │ │ ├── Pipfile.lock │ │ │ ├── Pipfile_no_default.lock │ │ │ ├── Pipfile_no_dev.lock │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ ├── poetry_source_without_url │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ │ └── requirements │ │ │ └── requirements.txt │ ├── requirements │ │ ├── default │ │ │ ├── Pipfile │ │ │ ├── Pipfile.lock │ │ │ ├── requirements_no_comments.txt │ │ │ ├── requirements_no_default.txt │ │ │ ├── requirements_no_dev.txt │ │ │ ├── requirements_no_hashes.txt │ │ │ ├── requirements_no_indexes.txt │ │ │ ├── requirements_no_versions.txt │ │ │ └── requirements_only_direct.txt │ │ ├── dev │ │ │ ├── Pipfile │ │ │ ├── Pipfile.lock │ │ │ ├── requirements_no_comments.txt │ │ │ ├── requirements_no_default.txt │ │ │ ├── requirements_no_dev.txt │ │ │ ├── requirements_no_hashes.txt │ │ │ ├── requirements_no_indexes.txt │ │ │ ├── requirements_no_versions.txt │ │ │ └── requirements_only_direct.txt │ │ ├── extras │ │ │ ├── Pipfile │ │ │ ├── Pipfile.lock │ │ │ ├── requirements_no_comments.txt │ │ │ ├── requirements_no_default.txt │ │ │ ├── requirements_no_dev.txt │ │ │ ├── requirements_no_hashes.txt │ │ │ ├── requirements_no_indexes.txt │ │ │ ├── requirements_no_versions.txt │ │ │ └── requirements_only_direct.txt │ │ ├── extras_marker │ │ │ ├── Pipfile │ │ │ ├── Pipfile.lock │ │ │ ├── requirements_no_comments.txt │ │ │ ├── requirements_no_default.txt │ │ │ ├── requirements_no_dev.txt │ │ │ ├── requirements_no_hashes.txt │ │ │ ├── requirements_no_indexes.txt │ │ │ ├── requirements_no_versions.txt │ │ │ └── requirements_only_direct.txt │ │ ├── marker │ │ │ ├── Pipfile │ │ │ ├── Pipfile.lock │ │ │ ├── requirements_no_comments.txt │ │ │ ├── requirements_no_default.txt │ │ │ ├── requirements_no_dev.txt │ │ │ ├── requirements_no_hashes.txt │ │ │ ├── requirements_no_indexes.txt │ │ │ ├── requirements_no_versions.txt │ │ │ └── requirements_only_direct.txt │ │ ├── poetry_complex │ │ │ ├── poetry.lock │ │ │ ├── pyproject.toml │ │ │ ├── requirements_no_comments.txt │ │ │ ├── requirements_no_default.txt │ │ │ ├── requirements_no_dev.txt │ │ │ ├── requirements_no_hashes.txt │ │ │ ├── requirements_no_indexes.txt │ │ │ ├── requirements_no_versions.txt │ │ │ └── requirements_only_direct.txt │ │ ├── source │ │ │ ├── Pipfile │ │ │ ├── Pipfile.lock │ │ │ ├── requirements_no_comments.txt │ │ │ ├── requirements_no_default.txt │ │ │ ├── requirements_no_dev.txt │ │ │ ├── requirements_no_hashes.txt │ │ │ ├── requirements_no_indexes.txt │ │ │ ├── requirements_no_versions.txt │ │ │ └── requirements_only_direct.txt │ │ └── vcs_ref_editable │ │ │ ├── Pipfile │ │ │ ├── Pipfile.lock │ │ │ ├── requirements_no_comments.txt │ │ │ ├── requirements_no_default.txt │ │ │ ├── requirements_no_dev.txt │ │ │ ├── requirements_no_hashes.txt │ │ │ ├── requirements_no_indexes.txt │ │ │ ├── requirements_no_versions.txt │ │ │ └── requirements_only_direct.txt │ └── verify │ │ ├── pipenv │ │ ├── Pipfile │ │ └── Pipfile.lock │ │ ├── pipenv_error_hash │ │ ├── Pipfile │ │ └── Pipfile.lock │ │ ├── pipenv_error_python │ │ ├── Pipfile │ │ └── Pipfile.lock │ │ ├── poetry │ │ ├── poetry.lock │ │ └── pyproject.toml │ │ ├── poetry_2_project │ │ ├── poetry.lock │ │ └── pyproject.toml │ │ ├── poetry_error_hash │ │ ├── poetry.lock │ │ └── pyproject.toml │ │ └── poetry_group │ │ ├── poetry.lock │ │ └── pyproject.toml ├── generate_test_data.sh └── test_micropipenv.py └── tox.ini /.aicoe-ci.yaml: -------------------------------------------------------------------------------- 1 | check: [] 2 | release: 3 | - upload-pypi-sesheta 4 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/major-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/.github/ISSUE_TEMPLATE/major-release.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/minor-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/.github/ISSUE_TEMPLATE/minor-release.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/patch-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/.github/ISSUE_TEMPLATE/patch-release.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/redeliver_container_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/.github/ISSUE_TEMPLATE/redeliver_container_image.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/prep_windows_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/.github/workflows/prep_windows_matrix.py -------------------------------------------------------------------------------- /.github/workflows/update_pip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/.github/workflows/update_pip.yml -------------------------------------------------------------------------------- /.github/workflows/update_supported_pip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/.github/workflows/update_supported_pip.sh -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/.prow.yaml -------------------------------------------------------------------------------- /.thoth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/.thoth.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/OWNERS -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/README.rst -------------------------------------------------------------------------------- /micropipenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/micropipenv.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -i https://pypi.org/simple 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/install/invalid_pipfile/Pipfile: -------------------------------------------------------------------------------- 1 | completely invalid pipfile 2 | -------------------------------------------------------------------------------- /tests/data/install/invalid_pipfile/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/invalid_pipfile/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/invalid_poetry_lock/poetry.lock: -------------------------------------------------------------------------------- 1 | completely invalid poetry.lock file 2 | -------------------------------------------------------------------------------- /tests/data/install/invalid_poetry_lock/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/invalid_poetry_lock/pyproject.toml -------------------------------------------------------------------------------- /tests/data/install/invalid_pyproject_toml/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/invalid_pyproject_toml/poetry.lock -------------------------------------------------------------------------------- /tests/data/install/invalid_pyproject_toml/pyproject.toml: -------------------------------------------------------------------------------- 1 | completely invalid pyproject.toml file 2 | -------------------------------------------------------------------------------- /tests/data/install/pip-tools/_Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pip-tools/_Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/pip-tools/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pip-tools/requirements.txt -------------------------------------------------------------------------------- /tests/data/install/pip-tools_direct_reference/micropipenv-0.0.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pip-tools_direct_reference/micropipenv-0.0.0.tar.gz -------------------------------------------------------------------------------- /tests/data/install/pipenv/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pipenv/Pipfile -------------------------------------------------------------------------------- /tests/data/install/pipenv/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pipenv/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/pipenv_editable/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pipenv_editable/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/pipenv_editable/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pipenv_editable/setup -------------------------------------------------------------------------------- /tests/data/install/pipenv_env_vars/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pipenv_env_vars/Pipfile -------------------------------------------------------------------------------- /tests/data/install/pipenv_env_vars/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pipenv_env_vars/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/pipenv_env_vars_default/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pipenv_env_vars_default/Pipfile -------------------------------------------------------------------------------- /tests/data/install/pipenv_env_vars_default/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pipenv_env_vars_default/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/pipenv_error_hash/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pipenv_error_hash/Pipfile -------------------------------------------------------------------------------- /tests/data/install/pipenv_error_hash/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pipenv_error_hash/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/pipenv_error_python/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pipenv_error_python/Pipfile -------------------------------------------------------------------------------- /tests/data/install/pipenv_error_python/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pipenv_error_python/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/pipenv_file/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pipenv_file/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/pipenv_iter_index/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pipenv_iter_index/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/pipenv_url/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pipenv_url/Pipfile -------------------------------------------------------------------------------- /tests/data/install/pipenv_url/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pipenv_url/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/pipenv_vcs/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pipenv_vcs/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/pipenv_vcs_editable/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pipenv_vcs_editable/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/pipenv_vcs_subdir/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/pipenv_vcs_subdir/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/poetry/_Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry/_Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/poetry/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry/poetry.lock -------------------------------------------------------------------------------- /tests/data/install/poetry/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry/pyproject.toml -------------------------------------------------------------------------------- /tests/data/install/poetry_complex_dep_tree/_Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_complex_dep_tree/_Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/poetry_complex_dep_tree/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_complex_dep_tree/poetry.lock -------------------------------------------------------------------------------- /tests/data/install/poetry_complex_dep_tree/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_complex_dep_tree/pyproject.toml -------------------------------------------------------------------------------- /tests/data/install/poetry_directory/_Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_directory/_Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/poetry_directory/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_directory/poetry.lock -------------------------------------------------------------------------------- /tests/data/install/poetry_directory/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_directory/pyproject.toml -------------------------------------------------------------------------------- /tests/data/install/poetry_directory/testproject/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_directory/testproject/pyproject.toml -------------------------------------------------------------------------------- /tests/data/install/poetry_directory/testproject/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_directory/testproject/setup.cfg -------------------------------------------------------------------------------- /tests/data/install/poetry_directory/testproject/testproject.py: -------------------------------------------------------------------------------- 1 | """Dummy module.""" 2 | -------------------------------------------------------------------------------- /tests/data/install/poetry_directory_poetry/_Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_directory_poetry/_Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/poetry_directory_poetry/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_directory_poetry/poetry.lock -------------------------------------------------------------------------------- /tests/data/install/poetry_directory_poetry/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_directory_poetry/pyproject.toml -------------------------------------------------------------------------------- /tests/data/install/poetry_directory_poetry/testproject/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_directory_poetry/testproject/poetry.lock -------------------------------------------------------------------------------- /tests/data/install/poetry_directory_poetry/testproject/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_directory_poetry/testproject/pyproject.toml -------------------------------------------------------------------------------- /tests/data/install/poetry_directory_poetry/testproject/testproject.py: -------------------------------------------------------------------------------- 1 | """Dummy module.""" 2 | -------------------------------------------------------------------------------- /tests/data/install/poetry_lock_format_2/_Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_lock_format_2/_Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/poetry_lock_format_2/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_lock_format_2/poetry.lock -------------------------------------------------------------------------------- /tests/data/install/poetry_lock_format_2/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_lock_format_2/pyproject.toml -------------------------------------------------------------------------------- /tests/data/install/poetry_markers_extra: -------------------------------------------------------------------------------- 1 | ../parse/poetry_markers_extra -------------------------------------------------------------------------------- /tests/data/install/poetry_secondary_source/_Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_secondary_source/_Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/poetry_secondary_source/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_secondary_source/poetry.lock -------------------------------------------------------------------------------- /tests/data/install/poetry_secondary_source/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_secondary_source/pyproject.toml -------------------------------------------------------------------------------- /tests/data/install/poetry_url/_Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_url/_Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/poetry_url/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_url/poetry.lock -------------------------------------------------------------------------------- /tests/data/install/poetry_url/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_url/pyproject.toml -------------------------------------------------------------------------------- /tests/data/install/poetry_vcs/_Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_vcs/_Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/poetry_vcs/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_vcs/poetry.lock -------------------------------------------------------------------------------- /tests/data/install/poetry_vcs/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_vcs/pyproject.toml -------------------------------------------------------------------------------- /tests/data/install/poetry_vcs_subdir/_Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_vcs_subdir/_Pipfile.lock -------------------------------------------------------------------------------- /tests/data/install/poetry_vcs_subdir/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_vcs_subdir/poetry.lock -------------------------------------------------------------------------------- /tests/data/install/poetry_vcs_subdir/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/poetry_vcs_subdir/pyproject.toml -------------------------------------------------------------------------------- /tests/data/install/requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/requirements/requirements.txt -------------------------------------------------------------------------------- /tests/data/install/requirements_editable/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/requirements_editable/main -------------------------------------------------------------------------------- /tests/data/install/requirements_editable/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/requirements_editable/requirements.txt -------------------------------------------------------------------------------- /tests/data/install/requirements_editable/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/requirements_editable/setup -------------------------------------------------------------------------------- /tests/data/install/requirements_editable_unlocked/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/requirements_editable_unlocked/main -------------------------------------------------------------------------------- /tests/data/install/requirements_editable_unlocked/requirements.txt: -------------------------------------------------------------------------------- 1 | -e .[baz] 2 | -------------------------------------------------------------------------------- /tests/data/install/requirements_editable_unlocked/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/requirements_editable_unlocked/setup -------------------------------------------------------------------------------- /tests/data/install/requirements_svn/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/requirements_svn/requirements.txt -------------------------------------------------------------------------------- /tests/data/install/requirements_vcs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/install/requirements_vcs/requirements.txt -------------------------------------------------------------------------------- /tests/data/parse/pip-tools/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/pip-tools/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/parse/pip-tools/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/pip-tools/requirements.txt -------------------------------------------------------------------------------- /tests/data/parse/pip-tools_no_index/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/pip-tools_no_index/requirements.txt -------------------------------------------------------------------------------- /tests/data/parse/pipenv/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/pipenv/Pipfile -------------------------------------------------------------------------------- /tests/data/parse/pipenv/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/pipenv/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry/Pipfile_no_default.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry/Pipfile_no_default.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry/Pipfile_no_dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry/Pipfile_no_dev.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry/poetry.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry/pyproject.toml -------------------------------------------------------------------------------- /tests/data/parse/poetry2/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry2/poetry.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry2/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry2/pyproject.toml -------------------------------------------------------------------------------- /tests/data/parse/poetry_1_5/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_1_5/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_1_5/Pipfile_no_default.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_1_5/Pipfile_no_default.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_1_5/Pipfile_no_dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_1_5/Pipfile_no_dev.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_1_5/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_1_5/poetry.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_1_5/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_1_5/pyproject.toml -------------------------------------------------------------------------------- /tests/data/parse/poetry_default_dev_diff/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_default_dev_diff/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_default_dev_diff/Pipfile_no_default.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_default_dev_diff/Pipfile_no_default.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_default_dev_diff/Pipfile_no_dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_default_dev_diff/Pipfile_no_dev.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_default_dev_diff/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_default_dev_diff/poetry.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_default_dev_diff/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_default_dev_diff/pyproject.toml -------------------------------------------------------------------------------- /tests/data/parse/poetry_default_source_legacy/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_default_source_legacy/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_default_source_legacy/Pipfile_no_default.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_default_source_legacy/Pipfile_no_default.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_default_source_legacy/Pipfile_no_dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_default_source_legacy/Pipfile_no_dev.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_default_source_legacy/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_default_source_legacy/poetry.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_default_source_legacy/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_default_source_legacy/pyproject.toml -------------------------------------------------------------------------------- /tests/data/parse/poetry_endless_loop/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_endless_loop/poetry.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_endless_loop/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_endless_loop/pyproject.toml -------------------------------------------------------------------------------- /tests/data/parse/poetry_legacy_source_and_groups/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_legacy_source_and_groups/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_legacy_source_and_groups/Pipfile_no_default.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_legacy_source_and_groups/Pipfile_no_default.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_legacy_source_and_groups/Pipfile_no_dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_legacy_source_and_groups/Pipfile_no_dev.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_legacy_source_and_groups/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_legacy_source_and_groups/poetry.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_legacy_source_and_groups/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_legacy_source_and_groups/pyproject.toml -------------------------------------------------------------------------------- /tests/data/parse/poetry_lock_format_2/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_lock_format_2/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_lock_format_2/Pipfile_no_default.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_lock_format_2/Pipfile_no_default.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_lock_format_2/Pipfile_no_dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_lock_format_2/Pipfile_no_dev.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_lock_format_2/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_lock_format_2/poetry.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_lock_format_2/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_lock_format_2/pyproject.toml -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_direct/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_direct/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_direct/Pipfile_no_default.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_direct/Pipfile_no_default.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_direct/Pipfile_no_dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_direct/Pipfile_no_dev.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_direct/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_direct/poetry.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_direct/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_direct/pyproject.toml -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_extra/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_extra/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_extra/Pipfile_no_default.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_extra/Pipfile_no_default.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_extra/Pipfile_no_dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_extra/Pipfile_no_dev.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_extra/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_extra/poetry.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_extra/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_extra/pyproject.toml -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_indirect/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_indirect/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_indirect/Pipfile_no_default.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_indirect/Pipfile_no_default.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_indirect/Pipfile_no_dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_indirect/Pipfile_no_dev.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_indirect/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_indirect/poetry.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_indirect/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_indirect/pyproject.toml -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_order/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_order/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_order/Pipfile_no_default.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_order/Pipfile_no_default.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_order/Pipfile_no_dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_order/Pipfile_no_dev.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_order/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_order/poetry.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_order/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_order/pyproject.toml -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_skip/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_skip/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_skip/Pipfile_no_default.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_skip/Pipfile_no_default.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_skip/Pipfile_no_dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_skip/Pipfile_no_dev.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_skip/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_skip/poetry.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_skip/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_skip/pyproject.toml -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_transitive_deps/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_transitive_deps/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_transitive_deps/Pipfile_no_default.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_transitive_deps/Pipfile_no_default.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_transitive_deps/Pipfile_no_dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_transitive_deps/Pipfile_no_dev.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_transitive_deps/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_transitive_deps/poetry.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_markers_transitive_deps/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_markers_transitive_deps/pyproject.toml -------------------------------------------------------------------------------- /tests/data/parse/poetry_normalized_names/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_normalized_names/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_normalized_names/Pipfile_no_default.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_normalized_names/Pipfile_no_default.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_normalized_names/Pipfile_no_dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_normalized_names/Pipfile_no_dev.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_normalized_names/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_normalized_names/poetry.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_normalized_names/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_normalized_names/pyproject.toml -------------------------------------------------------------------------------- /tests/data/parse/poetry_secondary_source/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_secondary_source/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_secondary_source/Pipfile_no_default.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_secondary_source/Pipfile_no_default.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_secondary_source/Pipfile_no_dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_secondary_source/Pipfile_no_dev.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_secondary_source/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_secondary_source/poetry.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_secondary_source/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_secondary_source/pyproject.toml -------------------------------------------------------------------------------- /tests/data/parse/poetry_source_directory/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_source_directory/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_source_directory/Pipfile_no_default.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_source_directory/Pipfile_no_default.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_source_directory/Pipfile_no_dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_source_directory/Pipfile_no_dev.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_source_directory/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_source_directory/poetry.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_source_directory/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_source_directory/pyproject.toml -------------------------------------------------------------------------------- /tests/data/parse/poetry_source_without_url/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_source_without_url/poetry.lock -------------------------------------------------------------------------------- /tests/data/parse/poetry_source_without_url/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/parse/poetry_source_without_url/pyproject.toml -------------------------------------------------------------------------------- /tests/data/parse/requirements/requirements.txt: -------------------------------------------------------------------------------- 1 | micropipenv 2 | -------------------------------------------------------------------------------- /tests/data/requirements/default/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/default/Pipfile -------------------------------------------------------------------------------- /tests/data/requirements/default/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/default/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/requirements/default/requirements_no_comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/default/requirements_no_comments.txt -------------------------------------------------------------------------------- /tests/data/requirements/default/requirements_no_default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/default/requirements_no_default.txt -------------------------------------------------------------------------------- /tests/data/requirements/default/requirements_no_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/default/requirements_no_dev.txt -------------------------------------------------------------------------------- /tests/data/requirements/default/requirements_no_hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/default/requirements_no_hashes.txt -------------------------------------------------------------------------------- /tests/data/requirements/default/requirements_no_indexes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/default/requirements_no_indexes.txt -------------------------------------------------------------------------------- /tests/data/requirements/default/requirements_no_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/default/requirements_no_versions.txt -------------------------------------------------------------------------------- /tests/data/requirements/default/requirements_only_direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/default/requirements_only_direct.txt -------------------------------------------------------------------------------- /tests/data/requirements/dev/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/dev/Pipfile -------------------------------------------------------------------------------- /tests/data/requirements/dev/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/dev/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/requirements/dev/requirements_no_comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/dev/requirements_no_comments.txt -------------------------------------------------------------------------------- /tests/data/requirements/dev/requirements_no_default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/dev/requirements_no_default.txt -------------------------------------------------------------------------------- /tests/data/requirements/dev/requirements_no_dev.txt: -------------------------------------------------------------------------------- 1 | --index-url https://pypi.org/simple 2 | -------------------------------------------------------------------------------- /tests/data/requirements/dev/requirements_no_hashes.txt: -------------------------------------------------------------------------------- 1 | --index-url https://pypi.org/simple 2 | # 3 | # Dev dependencies 4 | # 5 | pytest==5.3.5 6 | -------------------------------------------------------------------------------- /tests/data/requirements/dev/requirements_no_indexes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/dev/requirements_no_indexes.txt -------------------------------------------------------------------------------- /tests/data/requirements/dev/requirements_no_versions.txt: -------------------------------------------------------------------------------- 1 | --index-url https://pypi.org/simple 2 | # 3 | # Dev dependencies 4 | # 5 | pytest 6 | -------------------------------------------------------------------------------- /tests/data/requirements/dev/requirements_only_direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/dev/requirements_only_direct.txt -------------------------------------------------------------------------------- /tests/data/requirements/extras/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/extras/Pipfile -------------------------------------------------------------------------------- /tests/data/requirements/extras/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/extras/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/requirements/extras/requirements_no_comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/extras/requirements_no_comments.txt -------------------------------------------------------------------------------- /tests/data/requirements/extras/requirements_no_default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/extras/requirements_no_default.txt -------------------------------------------------------------------------------- /tests/data/requirements/extras/requirements_no_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/extras/requirements_no_dev.txt -------------------------------------------------------------------------------- /tests/data/requirements/extras/requirements_no_hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/extras/requirements_no_hashes.txt -------------------------------------------------------------------------------- /tests/data/requirements/extras/requirements_no_indexes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/extras/requirements_no_indexes.txt -------------------------------------------------------------------------------- /tests/data/requirements/extras/requirements_no_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/extras/requirements_no_versions.txt -------------------------------------------------------------------------------- /tests/data/requirements/extras/requirements_only_direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/extras/requirements_only_direct.txt -------------------------------------------------------------------------------- /tests/data/requirements/extras_marker/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/extras_marker/Pipfile -------------------------------------------------------------------------------- /tests/data/requirements/extras_marker/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/extras_marker/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/requirements/extras_marker/requirements_no_comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/extras_marker/requirements_no_comments.txt -------------------------------------------------------------------------------- /tests/data/requirements/extras_marker/requirements_no_default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/extras_marker/requirements_no_default.txt -------------------------------------------------------------------------------- /tests/data/requirements/extras_marker/requirements_no_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/extras_marker/requirements_no_dev.txt -------------------------------------------------------------------------------- /tests/data/requirements/extras_marker/requirements_no_hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/extras_marker/requirements_no_hashes.txt -------------------------------------------------------------------------------- /tests/data/requirements/extras_marker/requirements_no_indexes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/extras_marker/requirements_no_indexes.txt -------------------------------------------------------------------------------- /tests/data/requirements/extras_marker/requirements_no_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/extras_marker/requirements_no_versions.txt -------------------------------------------------------------------------------- /tests/data/requirements/extras_marker/requirements_only_direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/extras_marker/requirements_only_direct.txt -------------------------------------------------------------------------------- /tests/data/requirements/marker/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/marker/Pipfile -------------------------------------------------------------------------------- /tests/data/requirements/marker/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/marker/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/requirements/marker/requirements_no_comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/marker/requirements_no_comments.txt -------------------------------------------------------------------------------- /tests/data/requirements/marker/requirements_no_default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/marker/requirements_no_default.txt -------------------------------------------------------------------------------- /tests/data/requirements/marker/requirements_no_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/marker/requirements_no_dev.txt -------------------------------------------------------------------------------- /tests/data/requirements/marker/requirements_no_hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/marker/requirements_no_hashes.txt -------------------------------------------------------------------------------- /tests/data/requirements/marker/requirements_no_indexes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/marker/requirements_no_indexes.txt -------------------------------------------------------------------------------- /tests/data/requirements/marker/requirements_no_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/marker/requirements_no_versions.txt -------------------------------------------------------------------------------- /tests/data/requirements/marker/requirements_only_direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/marker/requirements_only_direct.txt -------------------------------------------------------------------------------- /tests/data/requirements/poetry_complex/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/poetry_complex/poetry.lock -------------------------------------------------------------------------------- /tests/data/requirements/poetry_complex/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/poetry_complex/pyproject.toml -------------------------------------------------------------------------------- /tests/data/requirements/poetry_complex/requirements_no_comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/poetry_complex/requirements_no_comments.txt -------------------------------------------------------------------------------- /tests/data/requirements/poetry_complex/requirements_no_default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/poetry_complex/requirements_no_default.txt -------------------------------------------------------------------------------- /tests/data/requirements/poetry_complex/requirements_no_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/poetry_complex/requirements_no_dev.txt -------------------------------------------------------------------------------- /tests/data/requirements/poetry_complex/requirements_no_hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/poetry_complex/requirements_no_hashes.txt -------------------------------------------------------------------------------- /tests/data/requirements/poetry_complex/requirements_no_indexes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/poetry_complex/requirements_no_indexes.txt -------------------------------------------------------------------------------- /tests/data/requirements/poetry_complex/requirements_no_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/poetry_complex/requirements_no_versions.txt -------------------------------------------------------------------------------- /tests/data/requirements/poetry_complex/requirements_only_direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/poetry_complex/requirements_only_direct.txt -------------------------------------------------------------------------------- /tests/data/requirements/source/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/source/Pipfile -------------------------------------------------------------------------------- /tests/data/requirements/source/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/source/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/requirements/source/requirements_no_comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/source/requirements_no_comments.txt -------------------------------------------------------------------------------- /tests/data/requirements/source/requirements_no_default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/source/requirements_no_default.txt -------------------------------------------------------------------------------- /tests/data/requirements/source/requirements_no_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/source/requirements_no_dev.txt -------------------------------------------------------------------------------- /tests/data/requirements/source/requirements_no_hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/source/requirements_no_hashes.txt -------------------------------------------------------------------------------- /tests/data/requirements/source/requirements_no_indexes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/source/requirements_no_indexes.txt -------------------------------------------------------------------------------- /tests/data/requirements/source/requirements_no_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/source/requirements_no_versions.txt -------------------------------------------------------------------------------- /tests/data/requirements/source/requirements_only_direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/source/requirements_only_direct.txt -------------------------------------------------------------------------------- /tests/data/requirements/vcs_ref_editable/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/vcs_ref_editable/Pipfile -------------------------------------------------------------------------------- /tests/data/requirements/vcs_ref_editable/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/vcs_ref_editable/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/requirements/vcs_ref_editable/requirements_no_comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/vcs_ref_editable/requirements_no_comments.txt -------------------------------------------------------------------------------- /tests/data/requirements/vcs_ref_editable/requirements_no_default.txt: -------------------------------------------------------------------------------- 1 | --index-url https://pypi.org/simple 2 | -------------------------------------------------------------------------------- /tests/data/requirements/vcs_ref_editable/requirements_no_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/vcs_ref_editable/requirements_no_dev.txt -------------------------------------------------------------------------------- /tests/data/requirements/vcs_ref_editable/requirements_no_hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/vcs_ref_editable/requirements_no_hashes.txt -------------------------------------------------------------------------------- /tests/data/requirements/vcs_ref_editable/requirements_no_indexes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/vcs_ref_editable/requirements_no_indexes.txt -------------------------------------------------------------------------------- /tests/data/requirements/vcs_ref_editable/requirements_no_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/vcs_ref_editable/requirements_no_versions.txt -------------------------------------------------------------------------------- /tests/data/requirements/vcs_ref_editable/requirements_only_direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/requirements/vcs_ref_editable/requirements_only_direct.txt -------------------------------------------------------------------------------- /tests/data/verify/pipenv/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/verify/pipenv/Pipfile -------------------------------------------------------------------------------- /tests/data/verify/pipenv/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/verify/pipenv/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/verify/pipenv_error_hash/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/verify/pipenv_error_hash/Pipfile -------------------------------------------------------------------------------- /tests/data/verify/pipenv_error_hash/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/verify/pipenv_error_hash/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/verify/pipenv_error_python/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/verify/pipenv_error_python/Pipfile -------------------------------------------------------------------------------- /tests/data/verify/pipenv_error_python/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/verify/pipenv_error_python/Pipfile.lock -------------------------------------------------------------------------------- /tests/data/verify/poetry/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/verify/poetry/poetry.lock -------------------------------------------------------------------------------- /tests/data/verify/poetry/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/verify/poetry/pyproject.toml -------------------------------------------------------------------------------- /tests/data/verify/poetry_2_project/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/verify/poetry_2_project/poetry.lock -------------------------------------------------------------------------------- /tests/data/verify/poetry_2_project/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/verify/poetry_2_project/pyproject.toml -------------------------------------------------------------------------------- /tests/data/verify/poetry_error_hash/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/verify/poetry_error_hash/poetry.lock -------------------------------------------------------------------------------- /tests/data/verify/poetry_error_hash/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/verify/poetry_error_hash/pyproject.toml -------------------------------------------------------------------------------- /tests/data/verify/poetry_group/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/verify/poetry_group/poetry.lock -------------------------------------------------------------------------------- /tests/data/verify/poetry_group/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/data/verify/poetry_group/pyproject.toml -------------------------------------------------------------------------------- /tests/generate_test_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/generate_test_data.sh -------------------------------------------------------------------------------- /tests/test_micropipenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tests/test_micropipenv.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoth-station/micropipenv/HEAD/tox.ini --------------------------------------------------------------------------------