├── .editorconfig ├── .github ├── FUNDING.yml ├── renovate.json5 └── workflows │ ├── ci.yml │ ├── release.yml │ ├── validate-ci-workflows.yml │ └── validate-renovate-config.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── docs ├── CHANGELOG.md ├── CONTRIBUTING.md ├── index.md ├── supported-package-managers.md └── usage-and-configuration.md ├── mkdocs.yml ├── pyproject.toml ├── rust-toolchain.toml ├── scripts └── bump-version.sh ├── src ├── bin │ └── migrate-to-uv.rs ├── cli.rs ├── converters │ ├── mod.rs │ ├── pip │ │ ├── dependencies.rs │ │ └── mod.rs │ ├── pipenv │ │ ├── dependencies.rs │ │ ├── mod.rs │ │ ├── project.rs │ │ └── sources.rs │ ├── poetry │ │ ├── build_backend.rs │ │ ├── dependencies.rs │ │ ├── mod.rs │ │ ├── project.rs │ │ ├── sources.rs │ │ └── version.rs │ └── pyproject_updater.rs ├── detector.rs ├── errors.rs ├── lib.rs ├── logger.rs ├── schema │ ├── hatch.rs │ ├── mod.rs │ ├── pep_621.rs │ ├── pipenv.rs │ ├── poetry.rs │ ├── pyproject.rs │ ├── utils.rs │ └── uv.rs └── toml.rs ├── tests ├── common │ └── mod.rs ├── fixtures │ ├── pip │ │ ├── existing_project │ │ │ ├── pyproject.toml │ │ │ └── requirements.txt │ │ └── full │ │ │ ├── constraints-2.txt │ │ │ ├── constraints.txt │ │ │ ├── requirements-dev.txt │ │ │ ├── requirements-typing.txt │ │ │ └── requirements.txt │ ├── pip_tools │ │ ├── existing_project │ │ │ ├── pyproject.toml │ │ │ ├── requirements.in │ │ │ └── requirements.txt │ │ ├── full │ │ │ ├── requirements-dev.in │ │ │ ├── requirements-dev.txt │ │ │ ├── requirements-typing.in │ │ │ ├── requirements-typing.txt │ │ │ ├── requirements.in │ │ │ └── requirements.txt │ │ └── with_lock_file │ │ │ ├── requirements-dev.in │ │ │ ├── requirements-dev.txt │ │ │ ├── requirements-typing.in │ │ │ ├── requirements-typing.txt │ │ │ ├── requirements.in │ │ │ └── requirements.txt │ ├── pipenv │ │ ├── existing_project │ │ │ ├── Pipfile │ │ │ └── pyproject.toml │ │ ├── full │ │ │ ├── Pipfile │ │ │ └── pyproject.toml │ │ ├── minimal │ │ │ └── Pipfile │ │ └── with_lock_file │ │ │ ├── Pipfile │ │ │ └── Pipfile.lock │ ├── poetry │ │ ├── existing_project │ │ │ └── pyproject.toml │ │ ├── full │ │ │ └── pyproject.toml │ │ ├── minimal │ │ │ └── pyproject.toml │ │ ├── pep_621 │ │ │ └── pyproject.toml │ │ ├── with_lock_file │ │ │ ├── poetry.lock │ │ │ ├── poetry.toml │ │ │ └── pyproject.toml │ │ ├── with_migration_errors │ │ │ ├── poetry.lock │ │ │ ├── poetry.toml │ │ │ └── pyproject.toml │ │ └── with_migration_warnings │ │ │ ├── poetry.lock │ │ │ ├── poetry.toml │ │ │ └── pyproject.toml │ └── uv │ │ ├── minimal │ │ └── pyproject.toml │ │ └── with_lock │ │ ├── pyproject.toml │ │ └── uv.lock ├── pip.rs ├── pip_tools.rs ├── pipenv.rs └── poetry.rs └── uv.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: mkniewallner 2 | -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/validate-ci-workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/.github/workflows/validate-ci-workflows.yml -------------------------------------------------------------------------------- /.github/workflows/validate-renovate-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/.github/workflows/validate-renovate-config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | 3 | # mkdocs documentation 4 | /site 5 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/README.md -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ../CHANGELOG.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ../CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/supported-package-managers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/docs/supported-package-managers.md -------------------------------------------------------------------------------- /docs/usage-and-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/docs/usage-and-configuration.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "1.91" 3 | -------------------------------------------------------------------------------- /scripts/bump-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/scripts/bump-version.sh -------------------------------------------------------------------------------- /src/bin/migrate-to-uv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/bin/migrate-to-uv.rs -------------------------------------------------------------------------------- /src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/cli.rs -------------------------------------------------------------------------------- /src/converters/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/converters/mod.rs -------------------------------------------------------------------------------- /src/converters/pip/dependencies.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/converters/pip/dependencies.rs -------------------------------------------------------------------------------- /src/converters/pip/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/converters/pip/mod.rs -------------------------------------------------------------------------------- /src/converters/pipenv/dependencies.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/converters/pipenv/dependencies.rs -------------------------------------------------------------------------------- /src/converters/pipenv/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/converters/pipenv/mod.rs -------------------------------------------------------------------------------- /src/converters/pipenv/project.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/converters/pipenv/project.rs -------------------------------------------------------------------------------- /src/converters/pipenv/sources.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/converters/pipenv/sources.rs -------------------------------------------------------------------------------- /src/converters/poetry/build_backend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/converters/poetry/build_backend.rs -------------------------------------------------------------------------------- /src/converters/poetry/dependencies.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/converters/poetry/dependencies.rs -------------------------------------------------------------------------------- /src/converters/poetry/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/converters/poetry/mod.rs -------------------------------------------------------------------------------- /src/converters/poetry/project.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/converters/poetry/project.rs -------------------------------------------------------------------------------- /src/converters/poetry/sources.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/converters/poetry/sources.rs -------------------------------------------------------------------------------- /src/converters/poetry/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/converters/poetry/version.rs -------------------------------------------------------------------------------- /src/converters/pyproject_updater.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/converters/pyproject_updater.rs -------------------------------------------------------------------------------- /src/detector.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/detector.rs -------------------------------------------------------------------------------- /src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/errors.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/logger.rs -------------------------------------------------------------------------------- /src/schema/hatch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/schema/hatch.rs -------------------------------------------------------------------------------- /src/schema/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/schema/mod.rs -------------------------------------------------------------------------------- /src/schema/pep_621.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/schema/pep_621.rs -------------------------------------------------------------------------------- /src/schema/pipenv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/schema/pipenv.rs -------------------------------------------------------------------------------- /src/schema/poetry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/schema/poetry.rs -------------------------------------------------------------------------------- /src/schema/pyproject.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/schema/pyproject.rs -------------------------------------------------------------------------------- /src/schema/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/schema/utils.rs -------------------------------------------------------------------------------- /src/schema/uv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/schema/uv.rs -------------------------------------------------------------------------------- /src/toml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/src/toml.rs -------------------------------------------------------------------------------- /tests/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/common/mod.rs -------------------------------------------------------------------------------- /tests/fixtures/pip/existing_project/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/pip/existing_project/pyproject.toml -------------------------------------------------------------------------------- /tests/fixtures/pip/existing_project/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/pip/existing_project/requirements.txt -------------------------------------------------------------------------------- /tests/fixtures/pip/full/constraints-2.txt: -------------------------------------------------------------------------------- 1 | zstandard==0.23.0 2 | -------------------------------------------------------------------------------- /tests/fixtures/pip/full/constraints.txt: -------------------------------------------------------------------------------- 1 | h11==0.14.0 2 | httpcore==1.0.7 3 | -------------------------------------------------------------------------------- /tests/fixtures/pip/full/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/pip/full/requirements-dev.txt -------------------------------------------------------------------------------- /tests/fixtures/pip/full/requirements-typing.txt: -------------------------------------------------------------------------------- 1 | # A comment 2 | mypy==1.14.1 3 | types-jsonschema==4.23.0.20241208 4 | -------------------------------------------------------------------------------- /tests/fixtures/pip/full/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/pip/full/requirements.txt -------------------------------------------------------------------------------- /tests/fixtures/pip_tools/existing_project/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/pip_tools/existing_project/pyproject.toml -------------------------------------------------------------------------------- /tests/fixtures/pip_tools/existing_project/requirements.in: -------------------------------------------------------------------------------- 1 | arrow>=1.2.3 2 | -------------------------------------------------------------------------------- /tests/fixtures/pip_tools/existing_project/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/pip_tools/existing_project/requirements.txt -------------------------------------------------------------------------------- /tests/fixtures/pip_tools/full/requirements-dev.in: -------------------------------------------------------------------------------- 1 | pytest>=8.3.4 2 | ruff==0.8.4 3 | -------------------------------------------------------------------------------- /tests/fixtures/pip_tools/full/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/pip_tools/full/requirements-dev.txt -------------------------------------------------------------------------------- /tests/fixtures/pip_tools/full/requirements-typing.in: -------------------------------------------------------------------------------- 1 | mypy==1.14.1 2 | types-jsonschema==4.23.0.20241208 3 | -------------------------------------------------------------------------------- /tests/fixtures/pip_tools/full/requirements-typing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/pip_tools/full/requirements-typing.txt -------------------------------------------------------------------------------- /tests/fixtures/pip_tools/full/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/pip_tools/full/requirements.in -------------------------------------------------------------------------------- /tests/fixtures/pip_tools/full/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/pip_tools/full/requirements.txt -------------------------------------------------------------------------------- /tests/fixtures/pip_tools/with_lock_file/requirements-dev.in: -------------------------------------------------------------------------------- 1 | -c requirements.txt 2 | factory-boy>=3.2.1 3 | -------------------------------------------------------------------------------- /tests/fixtures/pip_tools/with_lock_file/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/pip_tools/with_lock_file/requirements-dev.txt -------------------------------------------------------------------------------- /tests/fixtures/pip_tools/with_lock_file/requirements-typing.in: -------------------------------------------------------------------------------- 1 | -c requirements-dev.txt 2 | mypy>=1.13.0 3 | -------------------------------------------------------------------------------- /tests/fixtures/pip_tools/with_lock_file/requirements-typing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/pip_tools/with_lock_file/requirements-typing.txt -------------------------------------------------------------------------------- /tests/fixtures/pip_tools/with_lock_file/requirements.in: -------------------------------------------------------------------------------- 1 | arrow>=1.2.3 2 | -------------------------------------------------------------------------------- /tests/fixtures/pip_tools/with_lock_file/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/pip_tools/with_lock_file/requirements.txt -------------------------------------------------------------------------------- /tests/fixtures/pipenv/existing_project/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/pipenv/existing_project/Pipfile -------------------------------------------------------------------------------- /tests/fixtures/pipenv/existing_project/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/pipenv/existing_project/pyproject.toml -------------------------------------------------------------------------------- /tests/fixtures/pipenv/full/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/pipenv/full/Pipfile -------------------------------------------------------------------------------- /tests/fixtures/pipenv/full/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/pipenv/full/pyproject.toml -------------------------------------------------------------------------------- /tests/fixtures/pipenv/minimal/Pipfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/pipenv/with_lock_file/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/pipenv/with_lock_file/Pipfile -------------------------------------------------------------------------------- /tests/fixtures/pipenv/with_lock_file/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/pipenv/with_lock_file/Pipfile.lock -------------------------------------------------------------------------------- /tests/fixtures/poetry/existing_project/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/poetry/existing_project/pyproject.toml -------------------------------------------------------------------------------- /tests/fixtures/poetry/full/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/poetry/full/pyproject.toml -------------------------------------------------------------------------------- /tests/fixtures/poetry/minimal/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/poetry/minimal/pyproject.toml -------------------------------------------------------------------------------- /tests/fixtures/poetry/pep_621/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/poetry/pep_621/pyproject.toml -------------------------------------------------------------------------------- /tests/fixtures/poetry/with_lock_file/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/poetry/with_lock_file/poetry.lock -------------------------------------------------------------------------------- /tests/fixtures/poetry/with_lock_file/poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = true 3 | -------------------------------------------------------------------------------- /tests/fixtures/poetry/with_lock_file/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/poetry/with_lock_file/pyproject.toml -------------------------------------------------------------------------------- /tests/fixtures/poetry/with_migration_errors/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/poetry/with_migration_errors/poetry.lock -------------------------------------------------------------------------------- /tests/fixtures/poetry/with_migration_errors/poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = true 3 | -------------------------------------------------------------------------------- /tests/fixtures/poetry/with_migration_errors/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/poetry/with_migration_errors/pyproject.toml -------------------------------------------------------------------------------- /tests/fixtures/poetry/with_migration_warnings/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/poetry/with_migration_warnings/poetry.lock -------------------------------------------------------------------------------- /tests/fixtures/poetry/with_migration_warnings/poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = true 3 | -------------------------------------------------------------------------------- /tests/fixtures/poetry/with_migration_warnings/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/poetry/with_migration_warnings/pyproject.toml -------------------------------------------------------------------------------- /tests/fixtures/uv/minimal/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/uv/minimal/pyproject.toml -------------------------------------------------------------------------------- /tests/fixtures/uv/with_lock/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/uv/with_lock/pyproject.toml -------------------------------------------------------------------------------- /tests/fixtures/uv/with_lock/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/fixtures/uv/with_lock/uv.lock -------------------------------------------------------------------------------- /tests/pip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/pip.rs -------------------------------------------------------------------------------- /tests/pip_tools.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/pip_tools.rs -------------------------------------------------------------------------------- /tests/pipenv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/pipenv.rs -------------------------------------------------------------------------------- /tests/poetry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/tests/poetry.rs -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkniewallner/migrate-to-uv/HEAD/uv.lock --------------------------------------------------------------------------------