├── .github ├── renovate.json5 └── workflows │ ├── build.yaml │ ├── check.yaml │ ├── publish.yaml │ ├── release.yaml │ ├── test.yaml │ └── zizmor.yml ├── .gitignore ├── .prettierrc ├── .python-version ├── CONTRIBUTING.md ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── _typos.toml ├── package.json ├── pyproject.toml ├── scenarios ├── backtracking │ ├── wrong-backtracking-basic.toml │ └── wrong-backtracking-indirect.toml ├── does_not_exist │ ├── requires-exact-version-does-not-exist.toml │ ├── requires-greater-version-does-not-exist.toml │ ├── requires-less-version-does-not-exist.toml │ ├── requires-package-does-not-exist.toml │ └── transitive-requires-package-does-not-exist.toml ├── examples │ ├── example.json │ ├── example.toml │ └── example.yaml ├── excluded │ ├── dependency-excludes-non-contiguous-range-of-compatible-versions.toml │ ├── dependency-excludes-range-of-compatible-versions.toml │ ├── excluded-only-compatible-version.toml │ └── excluded-only-version.toml ├── extras │ ├── all-extras-required.toml │ ├── extra-does-not-exist-backtrack.toml │ ├── extra-incompatible-with-extra-not-requested.toml │ ├── extra-incompatible-with-extra.toml │ ├── extra-incompatible-with-root.toml │ ├── extra-required.toml │ ├── missing-extra.toml │ └── multiple-extras-required.toml ├── fork │ ├── allows-non-conflicting-non-overlapping-dependencies.toml │ ├── allows-non-conflicting-repeated-dependencies.toml │ ├── basic.toml │ ├── conflict-in-fork.toml │ ├── conflict-unsatisfiable.toml │ ├── filter-sibling-dependencies.toml │ ├── fork-upgrade.toml │ ├── incomplete-markers.toml │ ├── marker-accrue.toml │ ├── marker-disjoint.toml │ ├── marker-inherit-combined-allowed.toml │ ├── marker-inherit-combined-disallowed.toml │ ├── marker-inherit-combined.toml │ ├── marker-inherit-isolated.toml │ ├── marker-inherit-transitive.toml │ ├── marker-inherit.toml │ ├── marker-limited-inherit.toml │ ├── marker-selection.toml │ ├── marker-track.toml │ ├── non-fork-marker-transitive.toml │ ├── non-local-fork-marker-direct.toml │ ├── non-local-fork-marker-transitive.toml │ ├── overlapping-markers-basic.toml │ ├── preferences-dependent-forking-bistable.toml │ ├── preferences-dependent-forking-conflicting.toml │ ├── preferences-dependent-forking-tristable.toml │ ├── preferences-dependent-forking.toml │ ├── remaining-universe-partitioning.toml │ ├── requires-python-full-prerelease.toml │ ├── requires-python-full.toml │ ├── requires-python-patch-overlap.toml │ └── requires-python.toml ├── incompatible_versions │ ├── direct-incompatible-versions.toml │ ├── transitive-incompatible-versions.toml │ ├── transitive-incompatible-with-root-version.toml │ └── transitive-incompatible-with-transitive.toml ├── local │ ├── local-greater-than-or-equal.toml │ ├── local-greater-than.toml │ ├── local-less-than-or-equal.toml │ ├── local-less-than.toml │ ├── local-not-latest.toml │ ├── local-not-used-with-sdist.toml │ ├── local-simple.toml │ ├── local-transitive-backtrack.toml │ ├── local-transitive-conflicting.toml │ ├── local-transitive-confounding.toml │ ├── local-transitive-greater-than-or-equal.toml │ ├── local-transitive-greater-than.toml │ ├── local-transitive-less-than-or-equal.toml │ ├── local-transitive-less-than.toml │ ├── local-transitive.toml │ └── local-used-without-sdist.toml ├── post │ ├── post-equal-available.toml │ ├── post-equal-not-available.toml │ ├── post-greater-than-or-equal-post.toml │ ├── post-greater-than-or-equal.toml │ ├── post-greater-than-post-not-available.toml │ ├── post-greater-than-post.toml │ ├── post-greater-than.toml │ ├── post-less-than-or-equal.toml │ ├── post-less-than.toml │ ├── post-local-greater-than-post.toml │ ├── post-local-greater-than.toml │ └── post-simple.toml ├── prereleases │ ├── package-multiple-prereleases-kinds.toml │ ├── package-multiple-prereleases-numbers.toml │ ├── package-only-prereleases-boundary.toml │ ├── package-only-prereleases-in-range.toml │ ├── package-only-prereleases.toml │ ├── package-prerelease-specified-mixed-available.toml │ ├── package-prerelease-specified-only-final-available.toml │ ├── package-prerelease-specified-only-prerelease-available.toml │ ├── package-prereleases-boundary.toml │ ├── package-prereleases-global-boundary.toml │ ├── package-prereleases-specifier-boundary.toml │ ├── requires-package-only-prereleases-in-range-global-opt-in.toml │ ├── requires-package-prerelease-and-final-any.toml │ ├── transitive-package-only-prereleases-in-range-opt-in.toml │ ├── transitive-package-only-prereleases-in-range.toml │ ├── transitive-package-only-prereleases.toml │ ├── transitive-prerelease-and-stable-dependency-many-versions-holes.toml │ ├── transitive-prerelease-and-stable-dependency-many-versions.toml │ ├── transitive-prerelease-and-stable-dependency-opt-in.toml │ └── transitive-prerelease-and-stable-dependency.toml ├── requires_python │ ├── compatible-python-incompatible-override.toml │ ├── incompatible-python-compatible-override-available-no-wheels.toml │ ├── incompatible-python-compatible-override-no-compatible-wheels.toml │ ├── incompatible-python-compatible-override-other-wheel.toml │ ├── incompatible-python-compatible-override-unavailable-no-wheels.toml │ ├── incompatible-python-compatible-override.toml │ ├── python-greater-than-current-backtrack.toml │ ├── python-greater-than-current-excluded.toml │ ├── python-greater-than-current-many.toml │ ├── python-greater-than-current-patch.toml │ ├── python-greater-than-current.toml │ ├── python-less-than-current.toml │ ├── python-patch-override-no-patch.toml │ ├── python-patch-override-patch-compatible.toml │ └── python-version-does-not-exist.toml ├── tag_and_markers │ ├── requires-python-wheels.toml │ ├── unreachable-package.toml │ ├── unreachable-wheels.toml │ ├── virtual-package-extra-priorities.toml │ └── virtual-package-marker-priorities.toml ├── wheels │ ├── markers-change-after-selection.toml │ ├── no-binary.toml │ ├── no-build.toml │ ├── no-sdist-no-wheels-with-matching-abi.toml │ ├── no-sdist-no-wheels-with-matching-platform.toml │ ├── no-sdist-no-wheels-with-matching-python.toml │ ├── no-wheels-no-build.toml │ ├── no-wheels-with-matching-platform.toml │ ├── no-wheels.toml │ ├── only-wheels-no-binary.toml │ ├── only-wheels.toml │ ├── requires-python-subset.toml │ ├── specific-architecture.toml │ └── specific-tag-and-default.toml └── yanked │ ├── package-only-yanked-in-range.toml │ ├── package-only-yanked.toml │ ├── package-yanked-specified-mixed-available.toml │ ├── requires-package-yanked-and-unyanked-any.toml │ ├── transitive-package-only-yanked-in-range-opt-in.toml │ ├── transitive-package-only-yanked-in-range.toml │ ├── transitive-package-only-yanked.toml │ ├── transitive-yanked-and-unyanked-dependency-opt-in.toml │ └── transitive-yanked-and-unyanked-dependency.toml ├── scripts └── version ├── src └── packse │ ├── __init__.py │ ├── __main__.py │ ├── build.py │ ├── cli.py │ ├── error.py │ ├── fetch.py │ ├── index.py │ ├── inspect.py │ ├── list.py │ ├── publish.py │ ├── scenario.py │ ├── serve.py │ ├── template.py │ ├── templates │ ├── __init__.py │ ├── index │ │ ├── index.html │ │ └── simple-html │ │ │ ├── [[ scenarios ]][[ packages ]]{{ name}} │ │ │ └── index.html │ │ │ └── index.html │ └── package │ │ ├── template.toml │ │ └── {{ package-name }}-{{ version }} │ │ ├── .gitignore │ │ ├── pyproject.toml │ │ └── src │ │ └── {{ module-name }} │ │ └── __init__.py │ └── view.py ├── tests ├── __init__.py ├── __snapshots__ │ ├── test_build.ambr │ ├── test_build_pkg.ambr │ ├── test_fetch.ambr │ ├── test_inspect.ambr │ ├── test_list.ambr │ ├── test_publish.ambr │ ├── test_root.ambr │ ├── test_scenarios.ambr │ └── test_view.ambr ├── common.py ├── conftest.py ├── test_build.py ├── test_build_pkg.py ├── test_fetch.py ├── test_inspect.py ├── test_list.py ├── test_publish.py ├── test_root.py ├── test_scenarios.py └── test_view.py ├── uv.lock └── vendor ├── README.md ├── build ├── calver-2022.6.26-py3-none-any.whl ├── editables-0.5-py3-none-any.whl ├── editables-0.5.tar.gz ├── flit_core-3.9.0-py3-none-any.whl ├── hatchling-1.20.0-py3-none-any.whl ├── hatchling-1.20.0.tar.gz ├── install-1.3.5-py3-none-any.whl ├── packaging-23.2-py3-none-any.whl ├── packaging-23.2.tar.gz ├── pathspec-0.12.1-py3-none-any.whl ├── pathspec-0.12.1.tar.gz ├── pip-24.0-py3-none-any.whl ├── pluggy-1.3.0-py3-none-any.whl ├── pluggy-1.3.0.tar.gz ├── setuptools-69.0.2-py3-none-any.whl ├── setuptools-69.0.2.tar.gz ├── setuptools_scm-8.0.4-py3-none-any.whl ├── tomli-2.0.1-py3-none-any.whl ├── trove-classifiers-2023.11.29.tar.gz ├── trove_classifiers-2023.11.29-py3-none-any.whl ├── typing_extensions-4.9.0-py3-none-any.whl └── wheel-0.42.0-py3-none-any.whl └── index.html /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/.github/workflows/check.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.github/workflows/zizmor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/.github/workflows/zizmor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/.prettierrc -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/README.md -------------------------------------------------------------------------------- /_typos.toml: -------------------------------------------------------------------------------- 1 | [files] 2 | extend-exclude = [ 3 | "**/__snapshots__/", 4 | ] 5 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scenarios/backtracking/wrong-backtracking-basic.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/backtracking/wrong-backtracking-basic.toml -------------------------------------------------------------------------------- /scenarios/backtracking/wrong-backtracking-indirect.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/backtracking/wrong-backtracking-indirect.toml -------------------------------------------------------------------------------- /scenarios/does_not_exist/requires-exact-version-does-not-exist.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/does_not_exist/requires-exact-version-does-not-exist.toml -------------------------------------------------------------------------------- /scenarios/does_not_exist/requires-greater-version-does-not-exist.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/does_not_exist/requires-greater-version-does-not-exist.toml -------------------------------------------------------------------------------- /scenarios/does_not_exist/requires-less-version-does-not-exist.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/does_not_exist/requires-less-version-does-not-exist.toml -------------------------------------------------------------------------------- /scenarios/does_not_exist/requires-package-does-not-exist.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/does_not_exist/requires-package-does-not-exist.toml -------------------------------------------------------------------------------- /scenarios/does_not_exist/transitive-requires-package-does-not-exist.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/does_not_exist/transitive-requires-package-does-not-exist.toml -------------------------------------------------------------------------------- /scenarios/examples/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/examples/example.json -------------------------------------------------------------------------------- /scenarios/examples/example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/examples/example.toml -------------------------------------------------------------------------------- /scenarios/examples/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/examples/example.yaml -------------------------------------------------------------------------------- /scenarios/excluded/dependency-excludes-non-contiguous-range-of-compatible-versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/excluded/dependency-excludes-non-contiguous-range-of-compatible-versions.toml -------------------------------------------------------------------------------- /scenarios/excluded/dependency-excludes-range-of-compatible-versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/excluded/dependency-excludes-range-of-compatible-versions.toml -------------------------------------------------------------------------------- /scenarios/excluded/excluded-only-compatible-version.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/excluded/excluded-only-compatible-version.toml -------------------------------------------------------------------------------- /scenarios/excluded/excluded-only-version.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/excluded/excluded-only-version.toml -------------------------------------------------------------------------------- /scenarios/extras/all-extras-required.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/extras/all-extras-required.toml -------------------------------------------------------------------------------- /scenarios/extras/extra-does-not-exist-backtrack.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/extras/extra-does-not-exist-backtrack.toml -------------------------------------------------------------------------------- /scenarios/extras/extra-incompatible-with-extra-not-requested.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/extras/extra-incompatible-with-extra-not-requested.toml -------------------------------------------------------------------------------- /scenarios/extras/extra-incompatible-with-extra.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/extras/extra-incompatible-with-extra.toml -------------------------------------------------------------------------------- /scenarios/extras/extra-incompatible-with-root.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/extras/extra-incompatible-with-root.toml -------------------------------------------------------------------------------- /scenarios/extras/extra-required.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/extras/extra-required.toml -------------------------------------------------------------------------------- /scenarios/extras/missing-extra.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/extras/missing-extra.toml -------------------------------------------------------------------------------- /scenarios/extras/multiple-extras-required.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/extras/multiple-extras-required.toml -------------------------------------------------------------------------------- /scenarios/fork/allows-non-conflicting-non-overlapping-dependencies.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/allows-non-conflicting-non-overlapping-dependencies.toml -------------------------------------------------------------------------------- /scenarios/fork/allows-non-conflicting-repeated-dependencies.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/allows-non-conflicting-repeated-dependencies.toml -------------------------------------------------------------------------------- /scenarios/fork/basic.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/basic.toml -------------------------------------------------------------------------------- /scenarios/fork/conflict-in-fork.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/conflict-in-fork.toml -------------------------------------------------------------------------------- /scenarios/fork/conflict-unsatisfiable.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/conflict-unsatisfiable.toml -------------------------------------------------------------------------------- /scenarios/fork/filter-sibling-dependencies.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/filter-sibling-dependencies.toml -------------------------------------------------------------------------------- /scenarios/fork/fork-upgrade.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/fork-upgrade.toml -------------------------------------------------------------------------------- /scenarios/fork/incomplete-markers.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/incomplete-markers.toml -------------------------------------------------------------------------------- /scenarios/fork/marker-accrue.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/marker-accrue.toml -------------------------------------------------------------------------------- /scenarios/fork/marker-disjoint.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/marker-disjoint.toml -------------------------------------------------------------------------------- /scenarios/fork/marker-inherit-combined-allowed.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/marker-inherit-combined-allowed.toml -------------------------------------------------------------------------------- /scenarios/fork/marker-inherit-combined-disallowed.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/marker-inherit-combined-disallowed.toml -------------------------------------------------------------------------------- /scenarios/fork/marker-inherit-combined.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/marker-inherit-combined.toml -------------------------------------------------------------------------------- /scenarios/fork/marker-inherit-isolated.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/marker-inherit-isolated.toml -------------------------------------------------------------------------------- /scenarios/fork/marker-inherit-transitive.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/marker-inherit-transitive.toml -------------------------------------------------------------------------------- /scenarios/fork/marker-inherit.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/marker-inherit.toml -------------------------------------------------------------------------------- /scenarios/fork/marker-limited-inherit.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/marker-limited-inherit.toml -------------------------------------------------------------------------------- /scenarios/fork/marker-selection.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/marker-selection.toml -------------------------------------------------------------------------------- /scenarios/fork/marker-track.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/marker-track.toml -------------------------------------------------------------------------------- /scenarios/fork/non-fork-marker-transitive.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/non-fork-marker-transitive.toml -------------------------------------------------------------------------------- /scenarios/fork/non-local-fork-marker-direct.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/non-local-fork-marker-direct.toml -------------------------------------------------------------------------------- /scenarios/fork/non-local-fork-marker-transitive.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/non-local-fork-marker-transitive.toml -------------------------------------------------------------------------------- /scenarios/fork/overlapping-markers-basic.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/overlapping-markers-basic.toml -------------------------------------------------------------------------------- /scenarios/fork/preferences-dependent-forking-bistable.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/preferences-dependent-forking-bistable.toml -------------------------------------------------------------------------------- /scenarios/fork/preferences-dependent-forking-conflicting.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/preferences-dependent-forking-conflicting.toml -------------------------------------------------------------------------------- /scenarios/fork/preferences-dependent-forking-tristable.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/preferences-dependent-forking-tristable.toml -------------------------------------------------------------------------------- /scenarios/fork/preferences-dependent-forking.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/preferences-dependent-forking.toml -------------------------------------------------------------------------------- /scenarios/fork/remaining-universe-partitioning.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/remaining-universe-partitioning.toml -------------------------------------------------------------------------------- /scenarios/fork/requires-python-full-prerelease.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/requires-python-full-prerelease.toml -------------------------------------------------------------------------------- /scenarios/fork/requires-python-full.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/requires-python-full.toml -------------------------------------------------------------------------------- /scenarios/fork/requires-python-patch-overlap.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/requires-python-patch-overlap.toml -------------------------------------------------------------------------------- /scenarios/fork/requires-python.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/fork/requires-python.toml -------------------------------------------------------------------------------- /scenarios/incompatible_versions/direct-incompatible-versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/incompatible_versions/direct-incompatible-versions.toml -------------------------------------------------------------------------------- /scenarios/incompatible_versions/transitive-incompatible-versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/incompatible_versions/transitive-incompatible-versions.toml -------------------------------------------------------------------------------- /scenarios/incompatible_versions/transitive-incompatible-with-root-version.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/incompatible_versions/transitive-incompatible-with-root-version.toml -------------------------------------------------------------------------------- /scenarios/incompatible_versions/transitive-incompatible-with-transitive.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/incompatible_versions/transitive-incompatible-with-transitive.toml -------------------------------------------------------------------------------- /scenarios/local/local-greater-than-or-equal.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/local/local-greater-than-or-equal.toml -------------------------------------------------------------------------------- /scenarios/local/local-greater-than.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/local/local-greater-than.toml -------------------------------------------------------------------------------- /scenarios/local/local-less-than-or-equal.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/local/local-less-than-or-equal.toml -------------------------------------------------------------------------------- /scenarios/local/local-less-than.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/local/local-less-than.toml -------------------------------------------------------------------------------- /scenarios/local/local-not-latest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/local/local-not-latest.toml -------------------------------------------------------------------------------- /scenarios/local/local-not-used-with-sdist.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/local/local-not-used-with-sdist.toml -------------------------------------------------------------------------------- /scenarios/local/local-simple.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/local/local-simple.toml -------------------------------------------------------------------------------- /scenarios/local/local-transitive-backtrack.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/local/local-transitive-backtrack.toml -------------------------------------------------------------------------------- /scenarios/local/local-transitive-conflicting.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/local/local-transitive-conflicting.toml -------------------------------------------------------------------------------- /scenarios/local/local-transitive-confounding.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/local/local-transitive-confounding.toml -------------------------------------------------------------------------------- /scenarios/local/local-transitive-greater-than-or-equal.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/local/local-transitive-greater-than-or-equal.toml -------------------------------------------------------------------------------- /scenarios/local/local-transitive-greater-than.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/local/local-transitive-greater-than.toml -------------------------------------------------------------------------------- /scenarios/local/local-transitive-less-than-or-equal.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/local/local-transitive-less-than-or-equal.toml -------------------------------------------------------------------------------- /scenarios/local/local-transitive-less-than.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/local/local-transitive-less-than.toml -------------------------------------------------------------------------------- /scenarios/local/local-transitive.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/local/local-transitive.toml -------------------------------------------------------------------------------- /scenarios/local/local-used-without-sdist.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/local/local-used-without-sdist.toml -------------------------------------------------------------------------------- /scenarios/post/post-equal-available.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/post/post-equal-available.toml -------------------------------------------------------------------------------- /scenarios/post/post-equal-not-available.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/post/post-equal-not-available.toml -------------------------------------------------------------------------------- /scenarios/post/post-greater-than-or-equal-post.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/post/post-greater-than-or-equal-post.toml -------------------------------------------------------------------------------- /scenarios/post/post-greater-than-or-equal.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/post/post-greater-than-or-equal.toml -------------------------------------------------------------------------------- /scenarios/post/post-greater-than-post-not-available.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/post/post-greater-than-post-not-available.toml -------------------------------------------------------------------------------- /scenarios/post/post-greater-than-post.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/post/post-greater-than-post.toml -------------------------------------------------------------------------------- /scenarios/post/post-greater-than.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/post/post-greater-than.toml -------------------------------------------------------------------------------- /scenarios/post/post-less-than-or-equal.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/post/post-less-than-or-equal.toml -------------------------------------------------------------------------------- /scenarios/post/post-less-than.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/post/post-less-than.toml -------------------------------------------------------------------------------- /scenarios/post/post-local-greater-than-post.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/post/post-local-greater-than-post.toml -------------------------------------------------------------------------------- /scenarios/post/post-local-greater-than.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/post/post-local-greater-than.toml -------------------------------------------------------------------------------- /scenarios/post/post-simple.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/post/post-simple.toml -------------------------------------------------------------------------------- /scenarios/prereleases/package-multiple-prereleases-kinds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/package-multiple-prereleases-kinds.toml -------------------------------------------------------------------------------- /scenarios/prereleases/package-multiple-prereleases-numbers.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/package-multiple-prereleases-numbers.toml -------------------------------------------------------------------------------- /scenarios/prereleases/package-only-prereleases-boundary.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/package-only-prereleases-boundary.toml -------------------------------------------------------------------------------- /scenarios/prereleases/package-only-prereleases-in-range.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/package-only-prereleases-in-range.toml -------------------------------------------------------------------------------- /scenarios/prereleases/package-only-prereleases.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/package-only-prereleases.toml -------------------------------------------------------------------------------- /scenarios/prereleases/package-prerelease-specified-mixed-available.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/package-prerelease-specified-mixed-available.toml -------------------------------------------------------------------------------- /scenarios/prereleases/package-prerelease-specified-only-final-available.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/package-prerelease-specified-only-final-available.toml -------------------------------------------------------------------------------- /scenarios/prereleases/package-prerelease-specified-only-prerelease-available.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/package-prerelease-specified-only-prerelease-available.toml -------------------------------------------------------------------------------- /scenarios/prereleases/package-prereleases-boundary.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/package-prereleases-boundary.toml -------------------------------------------------------------------------------- /scenarios/prereleases/package-prereleases-global-boundary.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/package-prereleases-global-boundary.toml -------------------------------------------------------------------------------- /scenarios/prereleases/package-prereleases-specifier-boundary.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/package-prereleases-specifier-boundary.toml -------------------------------------------------------------------------------- /scenarios/prereleases/requires-package-only-prereleases-in-range-global-opt-in.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/requires-package-only-prereleases-in-range-global-opt-in.toml -------------------------------------------------------------------------------- /scenarios/prereleases/requires-package-prerelease-and-final-any.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/requires-package-prerelease-and-final-any.toml -------------------------------------------------------------------------------- /scenarios/prereleases/transitive-package-only-prereleases-in-range-opt-in.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/transitive-package-only-prereleases-in-range-opt-in.toml -------------------------------------------------------------------------------- /scenarios/prereleases/transitive-package-only-prereleases-in-range.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/transitive-package-only-prereleases-in-range.toml -------------------------------------------------------------------------------- /scenarios/prereleases/transitive-package-only-prereleases.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/transitive-package-only-prereleases.toml -------------------------------------------------------------------------------- /scenarios/prereleases/transitive-prerelease-and-stable-dependency-many-versions-holes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/transitive-prerelease-and-stable-dependency-many-versions-holes.toml -------------------------------------------------------------------------------- /scenarios/prereleases/transitive-prerelease-and-stable-dependency-many-versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/transitive-prerelease-and-stable-dependency-many-versions.toml -------------------------------------------------------------------------------- /scenarios/prereleases/transitive-prerelease-and-stable-dependency-opt-in.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/transitive-prerelease-and-stable-dependency-opt-in.toml -------------------------------------------------------------------------------- /scenarios/prereleases/transitive-prerelease-and-stable-dependency.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/prereleases/transitive-prerelease-and-stable-dependency.toml -------------------------------------------------------------------------------- /scenarios/requires_python/compatible-python-incompatible-override.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/requires_python/compatible-python-incompatible-override.toml -------------------------------------------------------------------------------- /scenarios/requires_python/incompatible-python-compatible-override-available-no-wheels.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/requires_python/incompatible-python-compatible-override-available-no-wheels.toml -------------------------------------------------------------------------------- /scenarios/requires_python/incompatible-python-compatible-override-no-compatible-wheels.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/requires_python/incompatible-python-compatible-override-no-compatible-wheels.toml -------------------------------------------------------------------------------- /scenarios/requires_python/incompatible-python-compatible-override-other-wheel.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/requires_python/incompatible-python-compatible-override-other-wheel.toml -------------------------------------------------------------------------------- /scenarios/requires_python/incompatible-python-compatible-override-unavailable-no-wheels.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/requires_python/incompatible-python-compatible-override-unavailable-no-wheels.toml -------------------------------------------------------------------------------- /scenarios/requires_python/incompatible-python-compatible-override.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/requires_python/incompatible-python-compatible-override.toml -------------------------------------------------------------------------------- /scenarios/requires_python/python-greater-than-current-backtrack.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/requires_python/python-greater-than-current-backtrack.toml -------------------------------------------------------------------------------- /scenarios/requires_python/python-greater-than-current-excluded.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/requires_python/python-greater-than-current-excluded.toml -------------------------------------------------------------------------------- /scenarios/requires_python/python-greater-than-current-many.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/requires_python/python-greater-than-current-many.toml -------------------------------------------------------------------------------- /scenarios/requires_python/python-greater-than-current-patch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/requires_python/python-greater-than-current-patch.toml -------------------------------------------------------------------------------- /scenarios/requires_python/python-greater-than-current.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/requires_python/python-greater-than-current.toml -------------------------------------------------------------------------------- /scenarios/requires_python/python-less-than-current.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/requires_python/python-less-than-current.toml -------------------------------------------------------------------------------- /scenarios/requires_python/python-patch-override-no-patch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/requires_python/python-patch-override-no-patch.toml -------------------------------------------------------------------------------- /scenarios/requires_python/python-patch-override-patch-compatible.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/requires_python/python-patch-override-patch-compatible.toml -------------------------------------------------------------------------------- /scenarios/requires_python/python-version-does-not-exist.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/requires_python/python-version-does-not-exist.toml -------------------------------------------------------------------------------- /scenarios/tag_and_markers/requires-python-wheels.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/tag_and_markers/requires-python-wheels.toml -------------------------------------------------------------------------------- /scenarios/tag_and_markers/unreachable-package.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/tag_and_markers/unreachable-package.toml -------------------------------------------------------------------------------- /scenarios/tag_and_markers/unreachable-wheels.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/tag_and_markers/unreachable-wheels.toml -------------------------------------------------------------------------------- /scenarios/tag_and_markers/virtual-package-extra-priorities.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/tag_and_markers/virtual-package-extra-priorities.toml -------------------------------------------------------------------------------- /scenarios/tag_and_markers/virtual-package-marker-priorities.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/tag_and_markers/virtual-package-marker-priorities.toml -------------------------------------------------------------------------------- /scenarios/wheels/markers-change-after-selection.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/wheels/markers-change-after-selection.toml -------------------------------------------------------------------------------- /scenarios/wheels/no-binary.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/wheels/no-binary.toml -------------------------------------------------------------------------------- /scenarios/wheels/no-build.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/wheels/no-build.toml -------------------------------------------------------------------------------- /scenarios/wheels/no-sdist-no-wheels-with-matching-abi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/wheels/no-sdist-no-wheels-with-matching-abi.toml -------------------------------------------------------------------------------- /scenarios/wheels/no-sdist-no-wheels-with-matching-platform.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/wheels/no-sdist-no-wheels-with-matching-platform.toml -------------------------------------------------------------------------------- /scenarios/wheels/no-sdist-no-wheels-with-matching-python.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/wheels/no-sdist-no-wheels-with-matching-python.toml -------------------------------------------------------------------------------- /scenarios/wheels/no-wheels-no-build.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/wheels/no-wheels-no-build.toml -------------------------------------------------------------------------------- /scenarios/wheels/no-wheels-with-matching-platform.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/wheels/no-wheels-with-matching-platform.toml -------------------------------------------------------------------------------- /scenarios/wheels/no-wheels.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/wheels/no-wheels.toml -------------------------------------------------------------------------------- /scenarios/wheels/only-wheels-no-binary.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/wheels/only-wheels-no-binary.toml -------------------------------------------------------------------------------- /scenarios/wheels/only-wheels.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/wheels/only-wheels.toml -------------------------------------------------------------------------------- /scenarios/wheels/requires-python-subset.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/wheels/requires-python-subset.toml -------------------------------------------------------------------------------- /scenarios/wheels/specific-architecture.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/wheels/specific-architecture.toml -------------------------------------------------------------------------------- /scenarios/wheels/specific-tag-and-default.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/wheels/specific-tag-and-default.toml -------------------------------------------------------------------------------- /scenarios/yanked/package-only-yanked-in-range.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/yanked/package-only-yanked-in-range.toml -------------------------------------------------------------------------------- /scenarios/yanked/package-only-yanked.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/yanked/package-only-yanked.toml -------------------------------------------------------------------------------- /scenarios/yanked/package-yanked-specified-mixed-available.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/yanked/package-yanked-specified-mixed-available.toml -------------------------------------------------------------------------------- /scenarios/yanked/requires-package-yanked-and-unyanked-any.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/yanked/requires-package-yanked-and-unyanked-any.toml -------------------------------------------------------------------------------- /scenarios/yanked/transitive-package-only-yanked-in-range-opt-in.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/yanked/transitive-package-only-yanked-in-range-opt-in.toml -------------------------------------------------------------------------------- /scenarios/yanked/transitive-package-only-yanked-in-range.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/yanked/transitive-package-only-yanked-in-range.toml -------------------------------------------------------------------------------- /scenarios/yanked/transitive-package-only-yanked.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/yanked/transitive-package-only-yanked.toml -------------------------------------------------------------------------------- /scenarios/yanked/transitive-yanked-and-unyanked-dependency-opt-in.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/yanked/transitive-yanked-and-unyanked-dependency-opt-in.toml -------------------------------------------------------------------------------- /scenarios/yanked/transitive-yanked-and-unyanked-dependency.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scenarios/yanked/transitive-yanked-and-unyanked-dependency.toml -------------------------------------------------------------------------------- /scripts/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/scripts/version -------------------------------------------------------------------------------- /src/packse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/__init__.py -------------------------------------------------------------------------------- /src/packse/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/__main__.py -------------------------------------------------------------------------------- /src/packse/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/build.py -------------------------------------------------------------------------------- /src/packse/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/cli.py -------------------------------------------------------------------------------- /src/packse/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/error.py -------------------------------------------------------------------------------- /src/packse/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/fetch.py -------------------------------------------------------------------------------- /src/packse/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/index.py -------------------------------------------------------------------------------- /src/packse/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/inspect.py -------------------------------------------------------------------------------- /src/packse/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/list.py -------------------------------------------------------------------------------- /src/packse/publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/publish.py -------------------------------------------------------------------------------- /src/packse/scenario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/scenario.py -------------------------------------------------------------------------------- /src/packse/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/serve.py -------------------------------------------------------------------------------- /src/packse/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/template.py -------------------------------------------------------------------------------- /src/packse/templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/templates/__init__.py -------------------------------------------------------------------------------- /src/packse/templates/index/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/templates/index/index.html -------------------------------------------------------------------------------- /src/packse/templates/index/simple-html/[[ scenarios ]][[ packages ]]{{ name}}/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/templates/index/simple-html/[[ scenarios ]][[ packages ]]{{ name}}/index.html -------------------------------------------------------------------------------- /src/packse/templates/index/simple-html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/templates/index/simple-html/index.html -------------------------------------------------------------------------------- /src/packse/templates/package/template.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/templates/package/template.toml -------------------------------------------------------------------------------- /src/packse/templates/package/{{ package-name }}-{{ version }}/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /src/packse/templates/package/{{ package-name }}-{{ version }}/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/templates/package/{{ package-name }}-{{ version }}/pyproject.toml -------------------------------------------------------------------------------- /src/packse/templates/package/{{ package-name }}-{{ version }}/src/{{ module-name }}/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/templates/package/{{ package-name }}-{{ version }}/src/{{ module-name }}/__init__.py -------------------------------------------------------------------------------- /src/packse/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/src/packse/view.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__snapshots__/test_build.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/__snapshots__/test_build.ambr -------------------------------------------------------------------------------- /tests/__snapshots__/test_build_pkg.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/__snapshots__/test_build_pkg.ambr -------------------------------------------------------------------------------- /tests/__snapshots__/test_fetch.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/__snapshots__/test_fetch.ambr -------------------------------------------------------------------------------- /tests/__snapshots__/test_inspect.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/__snapshots__/test_inspect.ambr -------------------------------------------------------------------------------- /tests/__snapshots__/test_list.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/__snapshots__/test_list.ambr -------------------------------------------------------------------------------- /tests/__snapshots__/test_publish.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/__snapshots__/test_publish.ambr -------------------------------------------------------------------------------- /tests/__snapshots__/test_root.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/__snapshots__/test_root.ambr -------------------------------------------------------------------------------- /tests/__snapshots__/test_scenarios.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/__snapshots__/test_scenarios.ambr -------------------------------------------------------------------------------- /tests/__snapshots__/test_view.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/__snapshots__/test_view.ambr -------------------------------------------------------------------------------- /tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/common.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/test_build.py -------------------------------------------------------------------------------- /tests/test_build_pkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/test_build_pkg.py -------------------------------------------------------------------------------- /tests/test_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/test_fetch.py -------------------------------------------------------------------------------- /tests/test_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/test_inspect.py -------------------------------------------------------------------------------- /tests/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/test_list.py -------------------------------------------------------------------------------- /tests/test_publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/test_publish.py -------------------------------------------------------------------------------- /tests/test_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/test_root.py -------------------------------------------------------------------------------- /tests/test_scenarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/test_scenarios.py -------------------------------------------------------------------------------- /tests/test_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/tests/test_view.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/uv.lock -------------------------------------------------------------------------------- /vendor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/README.md -------------------------------------------------------------------------------- /vendor/build/calver-2022.6.26-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/calver-2022.6.26-py3-none-any.whl -------------------------------------------------------------------------------- /vendor/build/editables-0.5-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/editables-0.5-py3-none-any.whl -------------------------------------------------------------------------------- /vendor/build/editables-0.5.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/editables-0.5.tar.gz -------------------------------------------------------------------------------- /vendor/build/flit_core-3.9.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/flit_core-3.9.0-py3-none-any.whl -------------------------------------------------------------------------------- /vendor/build/hatchling-1.20.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/hatchling-1.20.0-py3-none-any.whl -------------------------------------------------------------------------------- /vendor/build/hatchling-1.20.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/hatchling-1.20.0.tar.gz -------------------------------------------------------------------------------- /vendor/build/install-1.3.5-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/install-1.3.5-py3-none-any.whl -------------------------------------------------------------------------------- /vendor/build/packaging-23.2-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/packaging-23.2-py3-none-any.whl -------------------------------------------------------------------------------- /vendor/build/packaging-23.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/packaging-23.2.tar.gz -------------------------------------------------------------------------------- /vendor/build/pathspec-0.12.1-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/pathspec-0.12.1-py3-none-any.whl -------------------------------------------------------------------------------- /vendor/build/pathspec-0.12.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/pathspec-0.12.1.tar.gz -------------------------------------------------------------------------------- /vendor/build/pip-24.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/pip-24.0-py3-none-any.whl -------------------------------------------------------------------------------- /vendor/build/pluggy-1.3.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/pluggy-1.3.0-py3-none-any.whl -------------------------------------------------------------------------------- /vendor/build/pluggy-1.3.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/pluggy-1.3.0.tar.gz -------------------------------------------------------------------------------- /vendor/build/setuptools-69.0.2-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/setuptools-69.0.2-py3-none-any.whl -------------------------------------------------------------------------------- /vendor/build/setuptools-69.0.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/setuptools-69.0.2.tar.gz -------------------------------------------------------------------------------- /vendor/build/setuptools_scm-8.0.4-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/setuptools_scm-8.0.4-py3-none-any.whl -------------------------------------------------------------------------------- /vendor/build/tomli-2.0.1-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/tomli-2.0.1-py3-none-any.whl -------------------------------------------------------------------------------- /vendor/build/trove-classifiers-2023.11.29.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/trove-classifiers-2023.11.29.tar.gz -------------------------------------------------------------------------------- /vendor/build/trove_classifiers-2023.11.29-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/trove_classifiers-2023.11.29-py3-none-any.whl -------------------------------------------------------------------------------- /vendor/build/typing_extensions-4.9.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/typing_extensions-4.9.0-py3-none-any.whl -------------------------------------------------------------------------------- /vendor/build/wheel-0.42.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/build/wheel-0.42.0-py3-none-any.whl -------------------------------------------------------------------------------- /vendor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astral-sh/packse/HEAD/vendor/index.html --------------------------------------------------------------------------------