mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 19:08:04 +00:00
Rename distribution
to packages
in lockfile (#5861)
Currently, the entry for a package+version+source table is called `distribution`. That is incorrect, the `sdist` and `wheel` fields inside of that table are distributions, the table itself is for a package. We also align ourselves closer with PEP 751. I went through `lock.rs` and renamed all occurrences of "distribution" that actually referred to a "package". This change invalidates all existing lockfiles. Bikeshedding: Do we call it `package` or `packages`? See also https://github.com/python/peps/pull/3877 `package` is nice because it looks like a header: ```toml [[package]] name = "anyio" version = "4.3.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "idna" }, { name = "sniffio" }, ] sdist = { url = "3970183622/anyio-4.3.0.tar.gz
", hash = "sha256:f75253795a87df48568485fd18cdd2a3fa5c4f7c5be8e5e36637733fce06fed6", size = 159642 } wheels = [ { url = "2f20c40b45/anyio-4.3.0-py3-none-any.whl
", hash = "sha256:048e05d0f6caeed70d731f3db756d35dcc1f35747c8c403364a8332c630441b8", size = 85584 }, ] ``` `packages` is nice because the field is not a single entry, but a list. 2/3 for https://github.com/astral-sh/uv/issues/4893 --------- Co-authored-by: Charlie Marsh <charlie.r.marsh@gmail.com>
This commit is contained in:
parent
4fd9b115d5
commit
4038c9a6af
24 changed files with 1198 additions and 1073 deletions
|
@ -67,17 +67,17 @@ pub fn read_lock_requirements(lock: &Lock, upgrade: &Upgrade) -> LockedRequireme
|
|||
let mut preferences = Vec::new();
|
||||
let mut git = Vec::new();
|
||||
|
||||
for dist in lock.distributions() {
|
||||
for package in lock.packages() {
|
||||
// Skip the distribution if it's not included in the upgrade strategy.
|
||||
if upgrade.contains(dist.name()) {
|
||||
if upgrade.contains(package.name()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Map each entry in the lockfile to a preference.
|
||||
preferences.push(Preference::from_lock(dist));
|
||||
preferences.push(Preference::from_lock(package));
|
||||
|
||||
// Map each entry in the lockfile to a Git SHA.
|
||||
if let Some(git_ref) = dist.as_git_ref() {
|
||||
if let Some(git_ref) = package.as_git_ref() {
|
||||
git.push(git_ref);
|
||||
}
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -85,12 +85,12 @@ impl Preference {
|
|||
}
|
||||
|
||||
/// Create a [`Preference`] from a locked distribution.
|
||||
pub fn from_lock(dist: &crate::lock::Distribution) -> Self {
|
||||
pub fn from_lock(package: &crate::lock::Package) -> Self {
|
||||
Self {
|
||||
name: dist.id.name.clone(),
|
||||
version: dist.id.version.clone(),
|
||||
name: package.id.name.clone(),
|
||||
version: package.id.version.clone(),
|
||||
marker: None,
|
||||
fork_markers: dist.fork_markers().cloned(),
|
||||
fork_markers: package.fork_markers().cloned(),
|
||||
hashes: Vec::new(),
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,9 +12,9 @@ Ok(
|
|||
prerelease_mode: IfNecessaryOrExplicit,
|
||||
exclude_newer: None,
|
||||
},
|
||||
distributions: [
|
||||
Distribution {
|
||||
id: DistributionId {
|
||||
packages: [
|
||||
Package {
|
||||
id: PackageId {
|
||||
name: PackageName(
|
||||
"anyio",
|
||||
),
|
||||
|
@ -58,7 +58,7 @@ Ok(
|
|||
},
|
||||
],
|
||||
by_id: {
|
||||
DistributionId {
|
||||
PackageId {
|
||||
name: PackageName(
|
||||
"anyio",
|
||||
),
|
||||
|
|
|
@ -12,9 +12,9 @@ Ok(
|
|||
prerelease_mode: IfNecessaryOrExplicit,
|
||||
exclude_newer: None,
|
||||
},
|
||||
distributions: [
|
||||
Distribution {
|
||||
id: DistributionId {
|
||||
packages: [
|
||||
Package {
|
||||
id: PackageId {
|
||||
name: PackageName(
|
||||
"anyio",
|
||||
),
|
||||
|
@ -65,7 +65,7 @@ Ok(
|
|||
},
|
||||
],
|
||||
by_id: {
|
||||
DistributionId {
|
||||
PackageId {
|
||||
name: PackageName(
|
||||
"anyio",
|
||||
),
|
||||
|
|
|
@ -12,9 +12,9 @@ Ok(
|
|||
prerelease_mode: IfNecessaryOrExplicit,
|
||||
exclude_newer: None,
|
||||
},
|
||||
distributions: [
|
||||
Distribution {
|
||||
id: DistributionId {
|
||||
packages: [
|
||||
Package {
|
||||
id: PackageId {
|
||||
name: PackageName(
|
||||
"anyio",
|
||||
),
|
||||
|
@ -63,7 +63,7 @@ Ok(
|
|||
},
|
||||
],
|
||||
by_id: {
|
||||
DistributionId {
|
||||
PackageId {
|
||||
name: PackageName(
|
||||
"anyio",
|
||||
),
|
||||
|
|
|
@ -6,7 +6,7 @@ Err(
|
|||
Error {
|
||||
inner: Error {
|
||||
inner: TomlError {
|
||||
message: "dependency a has missing `source` field but has more than one matching distribution",
|
||||
message: "dependency a has missing `source` field but has more than one matching package",
|
||||
raw: None,
|
||||
keys: [],
|
||||
span: None,
|
||||
|
|
|
@ -12,9 +12,9 @@ Ok(
|
|||
prerelease_mode: IfNecessaryOrExplicit,
|
||||
exclude_newer: None,
|
||||
},
|
||||
distributions: [
|
||||
Distribution {
|
||||
id: DistributionId {
|
||||
packages: [
|
||||
Package {
|
||||
id: PackageId {
|
||||
name: PackageName(
|
||||
"a",
|
||||
),
|
||||
|
@ -51,8 +51,8 @@ Ok(
|
|||
optional_dependencies: {},
|
||||
dev_dependencies: {},
|
||||
},
|
||||
Distribution {
|
||||
id: DistributionId {
|
||||
Package {
|
||||
id: PackageId {
|
||||
name: PackageName(
|
||||
"b",
|
||||
),
|
||||
|
@ -87,7 +87,7 @@ Ok(
|
|||
fork_markers: None,
|
||||
dependencies: [
|
||||
Dependency {
|
||||
distribution_id: DistributionId {
|
||||
package_id: PackageId {
|
||||
name: PackageName(
|
||||
"a",
|
||||
),
|
||||
|
@ -107,7 +107,7 @@ Ok(
|
|||
},
|
||||
],
|
||||
by_id: {
|
||||
DistributionId {
|
||||
PackageId {
|
||||
name: PackageName(
|
||||
"a",
|
||||
),
|
||||
|
@ -118,7 +118,7 @@ Ok(
|
|||
),
|
||||
),
|
||||
}: 0,
|
||||
DistributionId {
|
||||
PackageId {
|
||||
name: PackageName(
|
||||
"b",
|
||||
),
|
||||
|
|
|
@ -6,7 +6,7 @@ Err(
|
|||
Error {
|
||||
inner: Error {
|
||||
inner: TomlError {
|
||||
message: "dependency a has missing `version` field but has more than one matching distribution",
|
||||
message: "dependency a has missing `version` field but has more than one matching package",
|
||||
raw: None,
|
||||
keys: [],
|
||||
span: None,
|
||||
|
|
|
@ -12,9 +12,9 @@ Ok(
|
|||
prerelease_mode: IfNecessaryOrExplicit,
|
||||
exclude_newer: None,
|
||||
},
|
||||
distributions: [
|
||||
Distribution {
|
||||
id: DistributionId {
|
||||
packages: [
|
||||
Package {
|
||||
id: PackageId {
|
||||
name: PackageName(
|
||||
"a",
|
||||
),
|
||||
|
@ -51,8 +51,8 @@ Ok(
|
|||
optional_dependencies: {},
|
||||
dev_dependencies: {},
|
||||
},
|
||||
Distribution {
|
||||
id: DistributionId {
|
||||
Package {
|
||||
id: PackageId {
|
||||
name: PackageName(
|
||||
"b",
|
||||
),
|
||||
|
@ -87,7 +87,7 @@ Ok(
|
|||
fork_markers: None,
|
||||
dependencies: [
|
||||
Dependency {
|
||||
distribution_id: DistributionId {
|
||||
package_id: PackageId {
|
||||
name: PackageName(
|
||||
"a",
|
||||
),
|
||||
|
@ -107,7 +107,7 @@ Ok(
|
|||
},
|
||||
],
|
||||
by_id: {
|
||||
DistributionId {
|
||||
PackageId {
|
||||
name: PackageName(
|
||||
"a",
|
||||
),
|
||||
|
@ -118,7 +118,7 @@ Ok(
|
|||
),
|
||||
),
|
||||
}: 0,
|
||||
DistributionId {
|
||||
PackageId {
|
||||
name: PackageName(
|
||||
"b",
|
||||
),
|
||||
|
|
|
@ -6,7 +6,7 @@ Err(
|
|||
Error {
|
||||
inner: Error {
|
||||
inner: TomlError {
|
||||
message: "dependency a has missing `version` field but has more than one matching distribution",
|
||||
message: "dependency a has missing `version` field but has more than one matching package",
|
||||
raw: None,
|
||||
keys: [],
|
||||
span: None,
|
||||
|
|
|
@ -12,9 +12,9 @@ Ok(
|
|||
prerelease_mode: IfNecessaryOrExplicit,
|
||||
exclude_newer: None,
|
||||
},
|
||||
distributions: [
|
||||
Distribution {
|
||||
id: DistributionId {
|
||||
packages: [
|
||||
Package {
|
||||
id: PackageId {
|
||||
name: PackageName(
|
||||
"a",
|
||||
),
|
||||
|
@ -51,8 +51,8 @@ Ok(
|
|||
optional_dependencies: {},
|
||||
dev_dependencies: {},
|
||||
},
|
||||
Distribution {
|
||||
id: DistributionId {
|
||||
Package {
|
||||
id: PackageId {
|
||||
name: PackageName(
|
||||
"b",
|
||||
),
|
||||
|
@ -87,7 +87,7 @@ Ok(
|
|||
fork_markers: None,
|
||||
dependencies: [
|
||||
Dependency {
|
||||
distribution_id: DistributionId {
|
||||
package_id: PackageId {
|
||||
name: PackageName(
|
||||
"a",
|
||||
),
|
||||
|
@ -107,7 +107,7 @@ Ok(
|
|||
},
|
||||
],
|
||||
by_id: {
|
||||
DistributionId {
|
||||
PackageId {
|
||||
name: PackageName(
|
||||
"a",
|
||||
),
|
||||
|
@ -118,7 +118,7 @@ Ok(
|
|||
),
|
||||
),
|
||||
}: 0,
|
||||
DistributionId {
|
||||
PackageId {
|
||||
name: PackageName(
|
||||
"b",
|
||||
),
|
||||
|
|
|
@ -12,9 +12,9 @@ Ok(
|
|||
prerelease_mode: IfNecessaryOrExplicit,
|
||||
exclude_newer: None,
|
||||
},
|
||||
distributions: [
|
||||
Distribution {
|
||||
id: DistributionId {
|
||||
packages: [
|
||||
Package {
|
||||
id: PackageId {
|
||||
name: PackageName(
|
||||
"anyio",
|
||||
),
|
||||
|
@ -39,7 +39,7 @@ Ok(
|
|||
},
|
||||
],
|
||||
by_id: {
|
||||
DistributionId {
|
||||
PackageId {
|
||||
name: PackageName(
|
||||
"anyio",
|
||||
),
|
||||
|
|
|
@ -12,9 +12,9 @@ Ok(
|
|||
prerelease_mode: IfNecessaryOrExplicit,
|
||||
exclude_newer: None,
|
||||
},
|
||||
distributions: [
|
||||
Distribution {
|
||||
id: DistributionId {
|
||||
packages: [
|
||||
Package {
|
||||
id: PackageId {
|
||||
name: PackageName(
|
||||
"anyio",
|
||||
),
|
||||
|
@ -37,7 +37,7 @@ Ok(
|
|||
},
|
||||
],
|
||||
by_id: {
|
||||
DistributionId {
|
||||
PackageId {
|
||||
name: PackageName(
|
||||
"anyio",
|
||||
),
|
||||
|
|
|
@ -12,9 +12,9 @@ Ok(
|
|||
prerelease_mode: IfNecessaryOrExplicit,
|
||||
exclude_newer: None,
|
||||
},
|
||||
distributions: [
|
||||
Distribution {
|
||||
id: DistributionId {
|
||||
packages: [
|
||||
Package {
|
||||
id: PackageId {
|
||||
name: PackageName(
|
||||
"anyio",
|
||||
),
|
||||
|
@ -32,7 +32,7 @@ Ok(
|
|||
},
|
||||
],
|
||||
by_id: {
|
||||
DistributionId {
|
||||
PackageId {
|
||||
name: PackageName(
|
||||
"anyio",
|
||||
),
|
||||
|
|
|
@ -12,9 +12,9 @@ Ok(
|
|||
prerelease_mode: IfNecessaryOrExplicit,
|
||||
exclude_newer: None,
|
||||
},
|
||||
distributions: [
|
||||
Distribution {
|
||||
id: DistributionId {
|
||||
packages: [
|
||||
Package {
|
||||
id: PackageId {
|
||||
name: PackageName(
|
||||
"anyio",
|
||||
),
|
||||
|
@ -32,7 +32,7 @@ Ok(
|
|||
},
|
||||
],
|
||||
by_id: {
|
||||
DistributionId {
|
||||
PackageId {
|
||||
name: PackageName(
|
||||
"anyio",
|
||||
),
|
||||
|
|
|
@ -296,8 +296,8 @@ pub(crate) async fn add(
|
|||
if !raw_sources {
|
||||
// Extract the minimum-supported version for each dependency.
|
||||
let mut minimum_version =
|
||||
FxHashMap::with_capacity_and_hasher(lock.lock.distributions().len(), FxBuildHasher);
|
||||
for dist in lock.lock.distributions() {
|
||||
FxHashMap::with_capacity_and_hasher(lock.lock.packages().len(), FxBuildHasher);
|
||||
for dist in lock.lock.packages() {
|
||||
let name = dist.name();
|
||||
let version = dist.version();
|
||||
match minimum_version.entry(name) {
|
||||
|
|
|
@ -598,37 +598,34 @@ pub(crate) async fn read(workspace: &Workspace) -> Result<Option<Lock>, ProjectE
|
|||
|
||||
/// Reports on the versions that were upgraded in the new lockfile.
|
||||
fn report_upgrades(existing_lock: &Lock, new_lock: &Lock, printer: Printer) -> anyhow::Result<()> {
|
||||
let existing_distributions: FxHashMap<&PackageName, BTreeSet<&Version>> =
|
||||
existing_lock.distributions().iter().fold(
|
||||
FxHashMap::with_capacity_and_hasher(existing_lock.distributions().len(), FxBuildHasher),
|
||||
|mut acc, distribution| {
|
||||
acc.entry(distribution.name())
|
||||
let existing_packages: FxHashMap<&PackageName, BTreeSet<&Version>> =
|
||||
existing_lock.packages().iter().fold(
|
||||
FxHashMap::with_capacity_and_hasher(existing_lock.packages().len(), FxBuildHasher),
|
||||
|mut acc, package| {
|
||||
acc.entry(package.name())
|
||||
.or_default()
|
||||
.insert(distribution.version());
|
||||
.insert(package.version());
|
||||
acc
|
||||
},
|
||||
);
|
||||
|
||||
let new_distributions: FxHashMap<&PackageName, BTreeSet<&Version>> =
|
||||
new_lock.distributions().iter().fold(
|
||||
FxHashMap::with_capacity_and_hasher(new_lock.distributions().len(), FxBuildHasher),
|
||||
|mut acc, distribution| {
|
||||
acc.entry(distribution.name())
|
||||
new_lock.packages().iter().fold(
|
||||
FxHashMap::with_capacity_and_hasher(new_lock.packages().len(), FxBuildHasher),
|
||||
|mut acc, package| {
|
||||
acc.entry(package.name())
|
||||
.or_default()
|
||||
.insert(distribution.version());
|
||||
.insert(package.version());
|
||||
acc
|
||||
},
|
||||
);
|
||||
|
||||
for name in existing_distributions
|
||||
for name in existing_packages
|
||||
.keys()
|
||||
.chain(new_distributions.keys())
|
||||
.collect::<BTreeSet<_>>()
|
||||
{
|
||||
match (
|
||||
existing_distributions.get(name),
|
||||
new_distributions.get(name),
|
||||
) {
|
||||
match (existing_packages.get(name), new_distributions.get(name)) {
|
||||
(Some(existing_versions), Some(new_versions)) => {
|
||||
if existing_versions != new_versions {
|
||||
let existing_versions = existing_versions
|
||||
|
|
|
@ -216,7 +216,7 @@ fn root_package_splits_transitive_too() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "a"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -226,7 +226,7 @@ fn root_package_splits_transitive_too() -> Result<()> {
|
|||
{ name = "b" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "anyio"
|
||||
version = "4.2.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -242,7 +242,7 @@ fn root_package_splits_transitive_too() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/bf/cd/d6d9bb1dadf73e7af02d18225cbd2c93f8552e13130484f1c8dcfece292b/anyio-4.2.0-py3-none-any.whl", hash = "sha256:745843b39e829e108e518c489b31dc757de7d2131d53fac32bd8df268227bfee", size = 85481 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "anyio"
|
||||
version = "4.3.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -258,7 +258,7 @@ fn root_package_splits_transitive_too() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/14/fd/2f20c40b45e4fb4324834aea24bd4afdf1143390242c0b33774da0e2e34f/anyio-4.3.0-py3-none-any.whl", hash = "sha256:048e05d0f6caeed70d731f3db756d35dcc1f35747c8c403364a8332c630441b8", size = 85584 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "b"
|
||||
version = "0.1.0"
|
||||
source = { directory = "b" }
|
||||
|
@ -267,7 +267,7 @@ fn root_package_splits_transitive_too() -> Result<()> {
|
|||
{ name = "b2", marker = "python_version >= '3.12'" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "b1"
|
||||
version = "0.1.0"
|
||||
source = { directory = "../b1" }
|
||||
|
@ -275,7 +275,7 @@ fn root_package_splits_transitive_too() -> Result<()> {
|
|||
{ name = "iniconfig", version = "1.1.1", source = { url = "https://files.pythonhosted.org/packages/9b/dd/b3c12c6d707058fa947864b67f0c4e0c39ef8610988d7baea9578f3c48f3/iniconfig-1.1.1-py2.py3-none-any.whl" }, marker = "python_version < '3.12'" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "b2"
|
||||
version = "0.1.0"
|
||||
source = { directory = "../b2" }
|
||||
|
@ -283,7 +283,7 @@ fn root_package_splits_transitive_too() -> Result<()> {
|
|||
{ name = "iniconfig", version = "2.0.0", source = { url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl" }, marker = "python_version >= '3.12'" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "idna"
|
||||
version = "3.6"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -292,7 +292,7 @@ fn root_package_splits_transitive_too() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/c2/e7/a82b05cf63a603df6e68d59ae6a68bf5064484a0718ea5033660af4b54a9/idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f", size = 61567 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "iniconfig"
|
||||
version = "1.1.1"
|
||||
source = { url = "https://files.pythonhosted.org/packages/9b/dd/b3c12c6d707058fa947864b67f0c4e0c39ef8610988d7baea9578f3c48f3/iniconfig-1.1.1-py2.py3-none-any.whl" }
|
||||
|
@ -303,7 +303,7 @@ fn root_package_splits_transitive_too() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/9b/dd/b3c12c6d707058fa947864b67f0c4e0c39ef8610988d7baea9578f3c48f3/iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "iniconfig"
|
||||
version = "2.0.0"
|
||||
source = { url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl" }
|
||||
|
@ -314,7 +314,7 @@ fn root_package_splits_transitive_too() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "sniffio"
|
||||
version = "1.3.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -392,7 +392,7 @@ fn root_package_splits_other_dependencies_too() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "a"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -403,7 +403,7 @@ fn root_package_splits_other_dependencies_too() -> Result<()> {
|
|||
{ name = "b2", marker = "python_version >= '3.12'" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "anyio"
|
||||
version = "4.2.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -419,7 +419,7 @@ fn root_package_splits_other_dependencies_too() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/bf/cd/d6d9bb1dadf73e7af02d18225cbd2c93f8552e13130484f1c8dcfece292b/anyio-4.2.0-py3-none-any.whl", hash = "sha256:745843b39e829e108e518c489b31dc757de7d2131d53fac32bd8df268227bfee", size = 85481 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "anyio"
|
||||
version = "4.3.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -435,7 +435,7 @@ fn root_package_splits_other_dependencies_too() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/14/fd/2f20c40b45e4fb4324834aea24bd4afdf1143390242c0b33774da0e2e34f/anyio-4.3.0-py3-none-any.whl", hash = "sha256:048e05d0f6caeed70d731f3db756d35dcc1f35747c8c403364a8332c630441b8", size = 85584 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "b1"
|
||||
version = "0.1.0"
|
||||
source = { directory = "b1" }
|
||||
|
@ -443,7 +443,7 @@ fn root_package_splits_other_dependencies_too() -> Result<()> {
|
|||
{ name = "iniconfig", version = "1.1.1", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.12'" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "b2"
|
||||
version = "0.1.0"
|
||||
source = { directory = "b2" }
|
||||
|
@ -451,7 +451,7 @@ fn root_package_splits_other_dependencies_too() -> Result<()> {
|
|||
{ name = "iniconfig", version = "2.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version >= '3.12'" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "idna"
|
||||
version = "3.6"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -460,7 +460,7 @@ fn root_package_splits_other_dependencies_too() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/c2/e7/a82b05cf63a603df6e68d59ae6a68bf5064484a0718ea5033660af4b54a9/idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f", size = 61567 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "iniconfig"
|
||||
version = "1.1.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -472,7 +472,7 @@ fn root_package_splits_other_dependencies_too() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/9b/dd/b3c12c6d707058fa947864b67f0c4e0c39ef8610988d7baea9578f3c48f3/iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3", size = 4990 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "iniconfig"
|
||||
version = "2.0.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -484,7 +484,7 @@ fn root_package_splits_other_dependencies_too() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374", size = 5892 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "sniffio"
|
||||
version = "1.3.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -539,7 +539,7 @@ fn branching_between_registry_and_direct_url() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "a"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -548,7 +548,7 @@ fn branching_between_registry_and_direct_url() -> Result<()> {
|
|||
{ name = "iniconfig", version = "2.0.0", source = { url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl" }, marker = "python_version >= '3.12'" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "iniconfig"
|
||||
version = "1.1.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -560,7 +560,7 @@ fn branching_between_registry_and_direct_url() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/9b/dd/b3c12c6d707058fa947864b67f0c4e0c39ef8610988d7baea9578f3c48f3/iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3", size = 4990 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "iniconfig"
|
||||
version = "2.0.0"
|
||||
source = { url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl" }
|
||||
|
@ -618,7 +618,7 @@ fn branching_urls_of_different_sources_disjoint() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "a"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -627,7 +627,7 @@ fn branching_urls_of_different_sources_disjoint() -> Result<()> {
|
|||
{ name = "iniconfig", version = "2.0.0", source = { git = "https://github.com/pytest-dev/iniconfig?rev=93f5930e668c0d1ddf4597e38dd0dea4e2665e7a#93f5930e668c0d1ddf4597e38dd0dea4e2665e7a" }, marker = "python_version >= '3.12'" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "iniconfig"
|
||||
version = "1.1.1"
|
||||
source = { url = "https://files.pythonhosted.org/packages/9b/dd/b3c12c6d707058fa947864b67f0c4e0c39ef8610988d7baea9578f3c48f3/iniconfig-1.1.1-py2.py3-none-any.whl" }
|
||||
|
@ -638,7 +638,7 @@ fn branching_urls_of_different_sources_disjoint() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/9b/dd/b3c12c6d707058fa947864b67f0c4e0c39ef8610988d7baea9578f3c48f3/iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "iniconfig"
|
||||
version = "2.0.0"
|
||||
source = { git = "https://github.com/pytest-dev/iniconfig?rev=93f5930e668c0d1ddf4597e38dd0dea4e2665e7a#93f5930e668c0d1ddf4597e38dd0dea4e2665e7a" }
|
||||
|
@ -735,7 +735,7 @@ fn dont_pre_visit_url_packages() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "a"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -744,7 +744,7 @@ fn dont_pre_visit_url_packages() -> Result<()> {
|
|||
{ name = "c" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "b"
|
||||
version = "0.1.0"
|
||||
source = { directory = "b" }
|
||||
|
@ -752,7 +752,7 @@ fn dont_pre_visit_url_packages() -> Result<()> {
|
|||
{ name = "c" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "c"
|
||||
version = "0.1.0"
|
||||
source = { directory = "../c" }
|
||||
|
|
|
@ -73,7 +73,7 @@ fn add_registry() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "anyio"
|
||||
version = "3.7.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -86,7 +86,7 @@ fn add_registry() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/68/fe/7ce1926952c8a403b35029e194555558514b365ad77d75125f521a2bec62/anyio-3.7.0-py3-none-any.whl", hash = "sha256:eddca883c4175f14df8aedce21054bfca3adb70ffe76a9f607aef9d7fa2ea7f0", size = 80873 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "idna"
|
||||
version = "3.6"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -95,7 +95,7 @@ fn add_registry() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/c2/e7/a82b05cf63a603df6e68d59ae6a68bf5064484a0718ea5033660af4b54a9/idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f", size = 61567 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -103,7 +103,7 @@ fn add_registry() -> Result<()> {
|
|||
{ name = "anyio" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "sniffio"
|
||||
version = "1.3.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -229,7 +229,7 @@ fn add_git() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "anyio"
|
||||
version = "3.7.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -242,7 +242,7 @@ fn add_git() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/68/fe/7ce1926952c8a403b35029e194555558514b365ad77d75125f521a2bec62/anyio-3.7.0-py3-none-any.whl", hash = "sha256:eddca883c4175f14df8aedce21054bfca3adb70ffe76a9f607aef9d7fa2ea7f0", size = 80873 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "idna"
|
||||
version = "3.6"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -251,7 +251,7 @@ fn add_git() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/c2/e7/a82b05cf63a603df6e68d59ae6a68bf5064484a0718ea5033660af4b54a9/idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f", size = 61567 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -260,7 +260,7 @@ fn add_git() -> Result<()> {
|
|||
{ name = "uv-public-pypackage" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "sniffio"
|
||||
version = "1.3.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -269,7 +269,7 @@ fn add_git() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "uv-public-pypackage"
|
||||
version = "0.1.0"
|
||||
source = { git = "https://github.com/astral-test/uv-public-pypackage?tag=0.0.1#0dacfd662c64cb4ceb16e6cf65a157a8b715b979" }
|
||||
|
@ -438,7 +438,7 @@ fn add_git_raw() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "anyio"
|
||||
version = "3.7.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -451,7 +451,7 @@ fn add_git_raw() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/68/fe/7ce1926952c8a403b35029e194555558514b365ad77d75125f521a2bec62/anyio-3.7.0-py3-none-any.whl", hash = "sha256:eddca883c4175f14df8aedce21054bfca3adb70ffe76a9f607aef9d7fa2ea7f0", size = 80873 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "idna"
|
||||
version = "3.6"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -460,7 +460,7 @@ fn add_git_raw() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/c2/e7/a82b05cf63a603df6e68d59ae6a68bf5064484a0718ea5033660af4b54a9/idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f", size = 61567 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -469,7 +469,7 @@ fn add_git_raw() -> Result<()> {
|
|||
{ name = "uv-public-pypackage" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "sniffio"
|
||||
version = "1.3.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -478,7 +478,7 @@ fn add_git_raw() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "uv-public-pypackage"
|
||||
version = "0.1.0"
|
||||
source = { git = "https://github.com/astral-test/uv-public-pypackage?rev=0.0.1#0dacfd662c64cb4ceb16e6cf65a157a8b715b979" }
|
||||
|
@ -655,7 +655,7 @@ fn add_unnamed() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -663,7 +663,7 @@ fn add_unnamed() -> Result<()> {
|
|||
{ name = "uv-public-pypackage" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "uv-public-pypackage"
|
||||
version = "0.1.0"
|
||||
source = { git = "https://github.com/astral-test/uv-public-pypackage?tag=0.0.1#0dacfd662c64cb4ceb16e6cf65a157a8b715b979" }
|
||||
|
@ -750,7 +750,7 @@ fn add_remove_dev() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "anyio"
|
||||
version = "3.7.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -763,7 +763,7 @@ fn add_remove_dev() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/68/fe/7ce1926952c8a403b35029e194555558514b365ad77d75125f521a2bec62/anyio-3.7.0-py3-none-any.whl", hash = "sha256:eddca883c4175f14df8aedce21054bfca3adb70ffe76a9f607aef9d7fa2ea7f0", size = 80873 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "idna"
|
||||
version = "3.6"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -772,17 +772,17 @@ fn add_remove_dev() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/c2/e7/a82b05cf63a603df6e68d59ae6a68bf5064484a0718ea5033660af4b54a9/idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f", size = 61567 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
||||
[distribution.dev-dependencies]
|
||||
[package.dev-dependencies]
|
||||
dev = [
|
||||
{ name = "anyio" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "sniffio"
|
||||
version = "1.3.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -868,7 +868,7 @@ fn add_remove_dev() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -955,7 +955,7 @@ fn add_remove_optional() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "anyio"
|
||||
version = "3.7.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -968,7 +968,7 @@ fn add_remove_optional() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/68/fe/7ce1926952c8a403b35029e194555558514b365ad77d75125f521a2bec62/anyio-3.7.0-py3-none-any.whl", hash = "sha256:eddca883c4175f14df8aedce21054bfca3adb70ffe76a9f607aef9d7fa2ea7f0", size = 80873 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "idna"
|
||||
version = "3.6"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -977,17 +977,17 @@ fn add_remove_optional() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/c2/e7/a82b05cf63a603df6e68d59ae6a68bf5064484a0718ea5033660af4b54a9/idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f", size = 61567 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
||||
[distribution.optional-dependencies]
|
||||
[package.optional-dependencies]
|
||||
io = [
|
||||
{ name = "anyio" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "sniffio"
|
||||
version = "1.3.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -1074,7 +1074,7 @@ fn add_remove_optional() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -1200,7 +1200,7 @@ fn add_remove_workspace() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "child1"
|
||||
version = "0.1.0"
|
||||
source = { editable = "child1" }
|
||||
|
@ -1208,7 +1208,7 @@ fn add_remove_workspace() -> Result<()> {
|
|||
{ name = "child2" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "child2"
|
||||
version = "0.1.0"
|
||||
source = { editable = "child2" }
|
||||
|
@ -1275,12 +1275,12 @@ fn add_remove_workspace() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "child1"
|
||||
version = "0.1.0"
|
||||
source = { editable = "child1" }
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "child2"
|
||||
version = "0.1.0"
|
||||
source = { editable = "child2" }
|
||||
|
@ -1386,7 +1386,7 @@ fn add_workspace_editable() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "child1"
|
||||
version = "0.1.0"
|
||||
source = { editable = "child1" }
|
||||
|
@ -1394,7 +1394,7 @@ fn add_workspace_editable() -> Result<()> {
|
|||
{ name = "child2" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "child2"
|
||||
version = "0.1.0"
|
||||
source = { editable = "child2" }
|
||||
|
@ -1584,7 +1584,7 @@ fn update() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "certifi"
|
||||
version = "2024.2.2"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -1593,7 +1593,7 @@ fn update() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/ba/06/a07f096c664aeb9f01624f858c3add0a4e913d6c96257acb4fce61e7de14/certifi-2024.2.2-py3-none-any.whl", hash = "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1", size = 163774 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "chardet"
|
||||
version = "5.2.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -1602,7 +1602,7 @@ fn update() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/38/6f/f5fbc992a329ee4e0f288c1fe0e2ad9485ed064cac731ed2fe47dcc38cbf/chardet-5.2.0-py3-none-any.whl", hash = "sha256:e1cf59446890a00105fe7b7912492ea04b6e6f06d4b742b2c788469e34c82970", size = 199385 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "charset-normalizer"
|
||||
version = "3.3.2"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -1626,7 +1626,7 @@ fn update() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/28/76/e6222113b83e3622caa4bb41032d0b1bf785250607392e1b778aca0b8a7d/charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc", size = 48543 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "idna"
|
||||
version = "3.6"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -1635,7 +1635,7 @@ fn update() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/c2/e7/a82b05cf63a603df6e68d59ae6a68bf5064484a0718ea5033660af4b54a9/idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f", size = 61567 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -1643,7 +1643,7 @@ fn update() -> Result<()> {
|
|||
{ name = "requests", extra = ["socks", "use-chardet-on-py3"] },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "pysocks"
|
||||
version = "1.7.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -1652,7 +1652,7 @@ fn update() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/8d/59/b4572118e098ac8e46e399a1dd0f2d85403ce8bbaad9ec79373ed6badaf9/PySocks-1.7.1-py3-none-any.whl", hash = "sha256:2725bd0a9925919b9b51739eea5f9e2bae91e83288108a9ad338b2e3a4435ee5", size = 16725 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "requests"
|
||||
version = "2.32.3"
|
||||
source = { git = "https://github.com/psf/requests?tag=v2.32.3#0e322af87745eff34caffe4df68456ebc20d9068" }
|
||||
|
@ -1663,7 +1663,7 @@ fn update() -> Result<()> {
|
|||
{ name = "urllib3" },
|
||||
]
|
||||
|
||||
[distribution.optional-dependencies]
|
||||
[package.optional-dependencies]
|
||||
socks = [
|
||||
{ name = "pysocks" },
|
||||
]
|
||||
|
@ -1671,7 +1671,7 @@ fn update() -> Result<()> {
|
|||
{ name = "chardet" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "urllib3"
|
||||
version = "2.2.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -1854,7 +1854,7 @@ fn add_no_clean() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "iniconfig"
|
||||
version = "2.0.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -1863,7 +1863,7 @@ fn add_no_clean() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374", size = 5892 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -1988,7 +1988,7 @@ fn remove_registry() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -2609,7 +2609,7 @@ fn add_lower_bound_optional() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "anyio"
|
||||
version = "4.3.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -2622,7 +2622,7 @@ fn add_lower_bound_optional() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/14/fd/2f20c40b45e4fb4324834aea24bd4afdf1143390242c0b33774da0e2e34f/anyio-4.3.0-py3-none-any.whl", hash = "sha256:048e05d0f6caeed70d731f3db756d35dcc1f35747c8c403364a8332c630441b8", size = 85584 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "idna"
|
||||
version = "3.6"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -2631,17 +2631,17 @@ fn add_lower_bound_optional() -> Result<()> {
|
|||
{ url = "https://files.pythonhosted.org/packages/c2/e7/a82b05cf63a603df6e68d59ae6a68bf5064484a0718ea5033660af4b54a9/idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f", size = 61567 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
||||
[distribution.optional-dependencies]
|
||||
[package.optional-dependencies]
|
||||
io = [
|
||||
{ name = "anyio" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "sniffio"
|
||||
version = "1.3.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -2713,7 +2713,7 @@ fn add_lower_bound_local() -> Result<()> {
|
|||
version = 1
|
||||
requires-python = ">=3.12"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "local-simple-a"
|
||||
version = "1.2.3+foo"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -2722,7 +2722,7 @@ fn add_lower_bound_local() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/local_simple_a-1.2.3+foo-py3-none-any.whl", hash = "sha256:6f30e2e709b3e171cd734bb58705229a582587c29e0a7041227435583c7224cc" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -2815,7 +2815,7 @@ fn add_virtual() -> Result<()> {
|
|||
[options]
|
||||
exclude-newer = "2024-03-25 00:00:00 UTC"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "iniconfig"
|
||||
version = "2.0.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -92,7 +92,7 @@ fn fork_allows_non_conflicting_non_overlapping_dependencies() -> Result<()> {
|
|||
"sys_platform != 'darwin' and sys_platform != 'linux'",
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -101,7 +101,7 @@ fn fork_allows_non_conflicting_non_overlapping_dependencies() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_allows_non_conflicting_non_overlapping_dependencies_a-1.0.0-py3-none-any.whl", hash = "sha256:8111e996c2a4e04c7a7cf91cf6f8338f5195c22ecf2303d899c4ef4e718a8175" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -200,7 +200,7 @@ fn fork_allows_non_conflicting_repeated_dependencies() -> Result<()> {
|
|||
version = 1
|
||||
requires-python = ">=3.8"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -209,7 +209,7 @@ fn fork_allows_non_conflicting_repeated_dependencies() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_allows_non_conflicting_repeated_dependencies_a-1.0.0-py3-none-any.whl", hash = "sha256:fc3f6d2fab10d1bb4f52bd9a7de69dc97ed1792506706ca78bdc9e95d6641a6b" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -300,7 +300,7 @@ fn fork_basic() -> Result<()> {
|
|||
"sys_platform != 'darwin' and sys_platform != 'linux'",
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -312,7 +312,7 @@ fn fork_basic() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_basic_a-1.0.0-py3-none-any.whl", hash = "sha256:9d3af617bb44ae1c8daf19f6d4d118ee8aac7eaf0cc5368d0f405137411291a1" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "2.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -324,7 +324,7 @@ fn fork_basic() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_basic_a-2.0.0-py3-none-any.whl", hash = "sha256:3876778dc6e5178b0e456b0d988cb8c2542cb943a45497aff3e198cbec3dfcc9" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -585,7 +585,7 @@ fn fork_filter_sibling_dependencies() -> Result<()> {
|
|||
"sys_platform != 'darwin' and sys_platform != 'linux'",
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "4.3.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -597,7 +597,7 @@ fn fork_filter_sibling_dependencies() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_filter_sibling_dependencies_a-4.3.0-py3-none-any.whl", hash = "sha256:932c128393cd499617d1a5b457b11887d51039284b18e06add4c384ab661148c" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "4.4.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -609,7 +609,7 @@ fn fork_filter_sibling_dependencies() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_filter_sibling_dependencies_a-4.4.0-py3-none-any.whl", hash = "sha256:26989734e8fa720896dbbf900adc64551bf3f0026fb62c3c22b47dc23edd4a4c" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-b"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -621,7 +621,7 @@ fn fork_filter_sibling_dependencies() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_filter_sibling_dependencies_b-1.0.0-py3-none-any.whl", hash = "sha256:bc72ef97f57a77fc7be9dc400be26ae5c344aabddbe39407c05a62e07554cdbf" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-c"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -633,7 +633,7 @@ fn fork_filter_sibling_dependencies() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_filter_sibling_dependencies_c-1.0.0-py3-none-any.whl", hash = "sha256:71fc9aec5527839358209ccb927186dd0529e9814a725d86aa17e7a033c59cd4" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-d"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -645,7 +645,7 @@ fn fork_filter_sibling_dependencies() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_filter_sibling_dependencies_d-1.0.0-py3-none-any.whl", hash = "sha256:de669ada03e9f8625e3ac4af637c88de04066a72675c16c3d1757e0e9d5db7a8" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-d"
|
||||
version = "2.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -657,7 +657,7 @@ fn fork_filter_sibling_dependencies() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_filter_sibling_dependencies_d-2.0.0-py3-none-any.whl", hash = "sha256:87c133dcc987137d62c011a41af31e8372ca971393d93f808dffc32e136363c7" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -763,7 +763,7 @@ fn fork_incomplete_markers() -> Result<()> {
|
|||
"python_version < '3.11' and python_version >= '3.10'",
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -775,7 +775,7 @@ fn fork_incomplete_markers() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_incomplete_markers_a-1.0.0-py3-none-any.whl", hash = "sha256:779bb805058fc59858e8b9260cd1a40f13f1640631fdea89d9d243691a4f39ca" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "2.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -787,7 +787,7 @@ fn fork_incomplete_markers() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_incomplete_markers_a-2.0.0-py3-none-any.whl", hash = "sha256:58a4b7dcf929aabf1ed434d9ff8d715929dc3dec02b92cf2b364d5a2206f1f6a" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-b"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -799,7 +799,7 @@ fn fork_incomplete_markers() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_incomplete_markers_b-1.0.0-py3-none-any.whl", hash = "sha256:5c2a5f446580787ed7b3673431b112474237ddeaf1c81325bb30b86e7ee76adb" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-c"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -808,7 +808,7 @@ fn fork_incomplete_markers() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_incomplete_markers_c-1.0.0-py3-none-any.whl", hash = "sha256:03fa287aa4cb78457211cb3df7459b99ba1ee2259aae24bc745eaab45e7eaaee" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -906,7 +906,7 @@ fn fork_marker_accrue() -> Result<()> {
|
|||
version = 1
|
||||
requires-python = ">=3.8"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -918,7 +918,7 @@ fn fork_marker_accrue() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_accrue_a-1.0.0-py3-none-any.whl", hash = "sha256:cba9cb55cca41833a15c9f8eb75045236cf80cad5d663f7fb7ecae18dad79538" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-b"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -930,7 +930,7 @@ fn fork_marker_accrue() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_accrue_b-1.0.0-py3-none-any.whl", hash = "sha256:c5202800c26be15ecaf5560e09ad1df710778bb9debd3c267be1c76f44fbc0c9" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-c"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -939,7 +939,7 @@ fn fork_marker_accrue() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_accrue_c-1.0.0-py3-none-any.whl", hash = "sha256:b0c8719d38c91b2a8548bd065b1d2153fbe031b37775ed244e76fe5bdfbb502e" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -1114,7 +1114,7 @@ fn fork_marker_inherit_combined_allowed() -> Result<()> {
|
|||
"sys_platform != 'darwin' and sys_platform != 'linux'",
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1132,7 +1132,7 @@ fn fork_marker_inherit_combined_allowed() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_combined_allowed_a-1.0.0-py3-none-any.whl", hash = "sha256:198ae54c02a59734dc009bfcee1148d40f56c605b62f9f1a00467e09ebf2ff07" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "2.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1144,7 +1144,7 @@ fn fork_marker_inherit_combined_allowed() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_combined_allowed_a-2.0.0-py3-none-any.whl", hash = "sha256:61b7d273468584342de4c0185beed5b128797ce95ec9ec4a670fe30f73351cf7" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-b"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1159,7 +1159,7 @@ fn fork_marker_inherit_combined_allowed() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_combined_allowed_b-1.0.0-py3-none-any.whl", hash = "sha256:e1deba885509945ef087e4f31c7dba3ee436fc8284b360fe207a3c42f2f9e22f" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-b"
|
||||
version = "2.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1171,7 +1171,7 @@ fn fork_marker_inherit_combined_allowed() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_combined_allowed_b-2.0.0-py3-none-any.whl", hash = "sha256:736d1b59cb46a0b889614bc7557c293de245fe8954e3200e786500ae8e42504b" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-c"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1180,7 +1180,7 @@ fn fork_marker_inherit_combined_allowed() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_combined_allowed_c-1.0.0-py3-none-any.whl", hash = "sha256:6a6b776dedabceb6a6c4f54a5d932076fa3fed1380310491999ca2d31e13b41c" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -1290,7 +1290,7 @@ fn fork_marker_inherit_combined_disallowed() -> Result<()> {
|
|||
"sys_platform != 'darwin' and sys_platform != 'linux'",
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1308,7 +1308,7 @@ fn fork_marker_inherit_combined_disallowed() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_combined_disallowed_a-1.0.0-py3-none-any.whl", hash = "sha256:ee2dc68d5b33c0318183431cebf99ccca63d98601b936e5d3eae804c73f2b154" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "2.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1320,7 +1320,7 @@ fn fork_marker_inherit_combined_disallowed() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_combined_disallowed_a-2.0.0-py3-none-any.whl", hash = "sha256:099db8d3af6c9dfc10589ab0f1e2e6a74276a167afb39322ddaf657791247456" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-b"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1332,7 +1332,7 @@ fn fork_marker_inherit_combined_disallowed() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_combined_disallowed_b-1.0.0-py3-none-any.whl", hash = "sha256:999b3d0029ea0131272257e2b04c0e673defa6c25be6efc411e04936bce72ef6" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-b"
|
||||
version = "2.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1344,7 +1344,7 @@ fn fork_marker_inherit_combined_disallowed() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_combined_disallowed_b-2.0.0-py3-none-any.whl", hash = "sha256:2c6aedd257d0ed21bb96f6e0baba8314c001d4078d09413cda147fb6badb39a2" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -1455,7 +1455,7 @@ fn fork_marker_inherit_combined() -> Result<()> {
|
|||
"sys_platform != 'darwin' and sys_platform != 'linux'",
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1473,7 +1473,7 @@ fn fork_marker_inherit_combined() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_combined_a-1.0.0-py3-none-any.whl", hash = "sha256:1150f6d977824bc0260cfb5fcf34816424ed4602d5df316c291b8df3f723c888" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "2.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1485,7 +1485,7 @@ fn fork_marker_inherit_combined() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_combined_a-2.0.0-py3-none-any.whl", hash = "sha256:67e142d749674a27c872db714d50fda083010789da51291e3c30b4daf0e96b3b" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-b"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1497,7 +1497,7 @@ fn fork_marker_inherit_combined() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_combined_b-1.0.0-py3-none-any.whl", hash = "sha256:d9b50d8a0968d65af338e27d6b2a58eea59c514e47b820752a2c068b5a8333a7" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-b"
|
||||
version = "2.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1509,7 +1509,7 @@ fn fork_marker_inherit_combined() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_combined_b-2.0.0-py3-none-any.whl", hash = "sha256:ff364fd590d05651579d8bea621b069934470106b9a82ab960fb93dfd88ea038" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -1611,7 +1611,7 @@ fn fork_marker_inherit_isolated() -> Result<()> {
|
|||
"sys_platform != 'darwin' and sys_platform != 'linux'",
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1623,7 +1623,7 @@ fn fork_marker_inherit_isolated() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_isolated_a-1.0.0-py3-none-any.whl", hash = "sha256:6823b88bf6debf2ec6195d82943c2812235a642438f007c0a3c95d745a5b95ba" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "2.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1638,7 +1638,7 @@ fn fork_marker_inherit_isolated() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_isolated_a-2.0.0-py3-none-any.whl", hash = "sha256:16986b43ef61e3f639b61fc9c22ede133864606d3d72716161a59acd64793c02" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-b"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1647,7 +1647,7 @@ fn fork_marker_inherit_isolated() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_isolated_b-1.0.0-py3-none-any.whl", hash = "sha256:c8affc2f13f9bcd08b3d1601a21a1781ea14d52a8cddc708b29428c9c3d53ea5" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -1755,7 +1755,7 @@ fn fork_marker_inherit_transitive() -> Result<()> {
|
|||
"sys_platform != 'darwin' and sys_platform != 'linux'",
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1770,7 +1770,7 @@ fn fork_marker_inherit_transitive() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_transitive_a-1.0.0-py3-none-any.whl", hash = "sha256:84d650ff1a909198ba82cbe0f697e836d8a570fb71faa6ad4a30c4df332dfde6" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "2.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1782,7 +1782,7 @@ fn fork_marker_inherit_transitive() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_transitive_a-2.0.0-py3-none-any.whl", hash = "sha256:420c4c6b02d22c33f7f8ae9f290acc5b4c372fc2e49c881d259237a31c76dc0b" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-b"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1794,7 +1794,7 @@ fn fork_marker_inherit_transitive() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_transitive_b-1.0.0-py3-none-any.whl", hash = "sha256:c9738afccc13d7d5bd7be85abf5dc77f88c43c577fb2f90dfa2abf1ffa0c8db6" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-c"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1803,7 +1803,7 @@ fn fork_marker_inherit_transitive() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_transitive_c-1.0.0-py3-none-any.whl", hash = "sha256:ad2cbb0582ec6f4dc9549d1726d2aae66cd1fdf0e355acc70cd720cf65ae4d86" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -1907,7 +1907,7 @@ fn fork_marker_inherit() -> Result<()> {
|
|||
"sys_platform != 'darwin' and sys_platform != 'linux'",
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1919,7 +1919,7 @@ fn fork_marker_inherit() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_a-1.0.0-py3-none-any.whl", hash = "sha256:16447932477c5feaa874b4e7510023c6f732578cec07158bc0e872af887a77d6" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "2.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -1931,7 +1931,7 @@ fn fork_marker_inherit() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_inherit_a-2.0.0-py3-none-any.whl", hash = "sha256:d650b6acf8f68d85e210ceb3e7802fbe84aad2b918b06a72dee534fe5474852b" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -2041,7 +2041,7 @@ fn fork_marker_limited_inherit() -> Result<()> {
|
|||
"sys_platform != 'darwin' and sys_platform != 'linux'",
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -2053,7 +2053,7 @@ fn fork_marker_limited_inherit() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_limited_inherit_a-1.0.0-py3-none-any.whl", hash = "sha256:0dcb9659eeb891701535005a2afd7c579f566d3908e96137db74129924ae6a7e" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "2.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -2065,7 +2065,7 @@ fn fork_marker_limited_inherit() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_limited_inherit_a-2.0.0-py3-none-any.whl", hash = "sha256:10957fddbd5611e0db154744a01d588c7105e26fd5f6a8150956ca9542d844c5" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-b"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -2077,7 +2077,7 @@ fn fork_marker_limited_inherit() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_limited_inherit_b-1.0.0-py3-none-any.whl", hash = "sha256:17365faaf25dba08be579867f219f914a0ff3298441f8d7b6201625a253333ec" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-c"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -2086,7 +2086,7 @@ fn fork_marker_limited_inherit() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_limited_inherit_c-1.0.0-py3-none-any.whl", hash = "sha256:877a87a4987ad795ddaded3e7266ed7defdd3cfbe07a29500cb6047637db4065" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -2191,7 +2191,7 @@ fn fork_marker_selection() -> Result<()> {
|
|||
"sys_platform != 'darwin' and sys_platform != 'linux'",
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "0.1.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -2200,7 +2200,7 @@ fn fork_marker_selection() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_selection_a-0.1.0-py3-none-any.whl", hash = "sha256:a3b9d6e46cc226d20994cc60653fd59d81d96527749f971a6f59ef8cbcbc7c01" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-b"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -2212,7 +2212,7 @@ fn fork_marker_selection() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_selection_b-1.0.0-py3-none-any.whl", hash = "sha256:5eb8c7fc25dfe94c8a3b71bc09eadb8cd4c7e55b974cee851b848c3856d6a4f9" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-b"
|
||||
version = "2.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -2224,7 +2224,7 @@ fn fork_marker_selection() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_selection_b-2.0.0-py3-none-any.whl", hash = "sha256:163fbcd238a66243064d41bd383657a63e45155f63bf92668c23af5245307380" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -2341,7 +2341,7 @@ fn fork_marker_track() -> Result<()> {
|
|||
"sys_platform != 'darwin' and sys_platform != 'linux'",
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "1.3.1"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -2353,7 +2353,7 @@ fn fork_marker_track() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_track_a-1.3.1-py3-none-any.whl", hash = "sha256:d9dc6a64400a041199df2d37182582ff7cc986bac486da273d814627e9b86648" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-b"
|
||||
version = "2.7"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -2365,7 +2365,7 @@ fn fork_marker_track() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_track_b-2.7-py3-none-any.whl", hash = "sha256:544eb2b567d2293c47da724af91fec59c2d3e06675617d29068864ec3a4e390f" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-b"
|
||||
version = "2.8"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -2377,7 +2377,7 @@ fn fork_marker_track() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_track_b-2.8-py3-none-any.whl", hash = "sha256:5aba691ce804ee39b2464c7757f8680786a1468e152ee845ff841c37f8112e21" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-c"
|
||||
version = "1.10"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -2386,7 +2386,7 @@ fn fork_marker_track() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_marker_track_c-1.10-py3-none-any.whl", hash = "sha256:cedcb8fbcdd9fbde4eea76612e57536c8b56507a9d7f7a92e483cb56b18c57a3" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -2483,7 +2483,7 @@ fn fork_non_fork_marker_transitive() -> Result<()> {
|
|||
version = 1
|
||||
requires-python = ">=3.8"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -2495,7 +2495,7 @@ fn fork_non_fork_marker_transitive() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_non_fork_marker_transitive_a-1.0.0-py3-none-any.whl", hash = "sha256:6c49aef823d3544d795c05497ca2dbd5c419cad4454e4d41b8f4860be45bd4bf" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-b"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -2507,7 +2507,7 @@ fn fork_non_fork_marker_transitive() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_non_fork_marker_transitive_b-1.0.0-py3-none-any.whl", hash = "sha256:6f301799cb51d920c7bef0120d5914f8315758ddc9f856b88783efae706dac16" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-c"
|
||||
version = "2.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -2516,7 +2516,7 @@ fn fork_non_fork_marker_transitive() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_non_fork_marker_transitive_c-2.0.0-py3-none-any.whl", hash = "sha256:2b72d6af81967e1c55f30d920d6a7b913fce6ad0a0658ec79972a3d1a054e85f" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -3603,7 +3603,7 @@ fn preferences_dependent_forking() -> Result<()> {
|
|||
"sys_platform != 'linux'",
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-bar"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -3612,7 +3612,7 @@ fn preferences_dependent_forking() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/preferences_dependent_forking_bar-1.0.0-py3-none-any.whl", hash = "sha256:3cdaac4b0ba330f902d0628c0b1d6e62692f52255d02718d04f46ade7c8ad6a6" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-cleaver"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -3625,7 +3625,7 @@ fn preferences_dependent_forking() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/preferences_dependent_forking_cleaver-1.0.0-py3-none-any.whl", hash = "sha256:855467570c9da8e92ce37d0ebd0653cfa50d5d88b9540beca94feaa37a539dc3" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-foo"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -3637,7 +3637,7 @@ fn preferences_dependent_forking() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/preferences_dependent_forking_foo-1.0.0-py3-none-any.whl", hash = "sha256:85348e8df4892b9f297560c16abcf231828f538dc07339ed121197a00a0626a5" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-foo"
|
||||
version = "2.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -3649,7 +3649,7 @@ fn preferences_dependent_forking() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/preferences_dependent_forking_foo-2.0.0-py3-none-any.whl", hash = "sha256:bae278cf259c0e031e52b6cbb537d945e0e606d045e980b90d406d0f1e06aae9" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -3916,7 +3916,7 @@ fn fork_requires_python_full_prerelease() -> Result<()> {
|
|||
version = 1
|
||||
requires-python = ">=3.10"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -3999,7 +3999,7 @@ fn fork_requires_python_full() -> Result<()> {
|
|||
version = 1
|
||||
requires-python = ">=3.10"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -4086,7 +4086,7 @@ fn fork_requires_python_patch_overlap() -> Result<()> {
|
|||
version = 1
|
||||
requires-python = ">=3.10.1"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "package-a"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://astral-sh.github.io/packse/PACKSE_VERSION/simple-html/" }
|
||||
|
@ -4095,7 +4095,7 @@ fn fork_requires_python_patch_overlap() -> Result<()> {
|
|||
{ url = "https://astral-sh.github.io/packse/PACKSE_VERSION/files/fork_requires_python_patch_overlap_a-1.0.0-py3-none-any.whl", hash = "sha256:43a750ba4eaab749d608d70e94d3d51e083cc21f5a52ac99b5967b26486d5ef1" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
@ -4178,7 +4178,7 @@ fn fork_requires_python() -> Result<()> {
|
|||
version = 1
|
||||
requires-python = ">=3.10"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "project"
|
||||
version = "0.1.0"
|
||||
source = { editable = "." }
|
||||
|
|
|
@ -675,20 +675,20 @@ fn workspace_lock_idempotence_virtual_workspace() -> Result<()> {
|
|||
/// Extract just the sources from the lockfile, to test path resolution.
|
||||
#[derive(Deserialize, Serialize)]
|
||||
struct SourceLock {
|
||||
distribution: Vec<Distribution>,
|
||||
package: Vec<Package>,
|
||||
}
|
||||
|
||||
impl SourceLock {
|
||||
fn sources(self) -> BTreeMap<String, toml::Value> {
|
||||
self.distribution
|
||||
self.package
|
||||
.into_iter()
|
||||
.map(|distribution| (distribution.name, distribution.source))
|
||||
.map(|package| (package.name, package.source))
|
||||
.collect()
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Deserialize, Serialize)]
|
||||
struct Distribution {
|
||||
struct Package {
|
||||
name: String,
|
||||
source: toml::Value,
|
||||
}
|
||||
|
|
150
scripts/benchmark/uv.lock
generated
150
scripts/benchmark/uv.lock
generated
|
@ -1,7 +1,7 @@
|
|||
version = 1
|
||||
requires-python = ">=3.11"
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "anyio"
|
||||
version = "4.4.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -14,7 +14,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/7b/a2/10639a79341f6c019dedc95bd48a4928eed9f1d1197f4c04f546fc7ae0ff/anyio-4.4.0-py3-none-any.whl", hash = "sha256:c1b2d8f46a8a812513012e1107cb0e68c17159a7a594208005a57dc776e1bdc7", size = 86780 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "argcomplete"
|
||||
version = "3.4.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -23,7 +23,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/0b/29/cba741f3abc1700dda883c4a1dd83f4ae89e4e8654067929d89143df2c58/argcomplete-3.4.0-py3-none-any.whl", hash = "sha256:69a79e083a716173e5532e0fa3bef45f793f4e61096cf52b5a42c0211c8b8aa5", size = 42641 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "benchmark"
|
||||
version = "0.0.1"
|
||||
source = { editable = "." }
|
||||
|
@ -37,7 +37,7 @@ dependencies = [
|
|||
{ name = "virtualenv" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "blinker"
|
||||
version = "1.8.2"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -46,7 +46,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/bb/2a/10164ed1f31196a2f7f3799368a821765c62851ead0e630ab52b8e14b4d0/blinker-1.8.2-py3-none-any.whl", hash = "sha256:1779309f71bf239144b9399d06ae925637cf6634cf6bd131104184531bf67c01", size = 9456 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "build"
|
||||
version = "1.2.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -60,7 +60,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/e2/03/f3c8ba0a6b6e30d7d18c40faab90807c9bb5e9a1e3b2fe2008af624a9c97/build-1.2.1-py3-none-any.whl", hash = "sha256:75e10f767a433d9a86e50d83f418e83efc18ede923ee5ff7df93b6cb0306c5d4", size = 21911 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "cachecontrol"
|
||||
version = "0.14.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -78,7 +78,7 @@ filecache = [
|
|||
{ name = "filelock" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "certifi"
|
||||
version = "2024.7.4"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -87,7 +87,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/1c/d5/c84e1a17bf61d4df64ca866a1c9a913874b4e9bdc131ec689a0ad013fb36/certifi-2024.7.4-py3-none-any.whl", hash = "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90", size = 162960 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "cffi"
|
||||
version = "1.16.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -119,7 +119,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/e9/63/e285470a4880a4f36edabe4810057bd4b562c6ddcc165eacf9c3c7210b40/cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235", size = 181956 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "charset-normalizer"
|
||||
version = "3.3.2"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -158,7 +158,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/28/76/e6222113b83e3622caa4bb41032d0b1bf785250607392e1b778aca0b8a7d/charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc", size = 48543 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "cleo"
|
||||
version = "2.1.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -171,7 +171,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/2d/f5/6bbead8b880620e5a99e0e4bb9e22e67cca16ff48d54105302a3e7821096/cleo-2.1.0-py3-none-any.whl", hash = "sha256:4a31bd4dd45695a64ee3c4758f583f134267c2bc518d8ae9a29cf237d009b07e", size = 78711 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "click"
|
||||
version = "8.1.7"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -183,7 +183,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/00/2e/d53fa4befbf2cfa713304affc7ca780ce4fc1fd8710527771b58311a3229/click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28", size = 97941 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "colorama"
|
||||
version = "0.4.6"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -192,7 +192,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "crashtest"
|
||||
version = "0.4.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -201,7 +201,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/b0/5c/3ba7d12e7a79566f97b8f954400926d7b6eb33bcdccc1315a857f200f1f1/crashtest-0.4.1-py3-none-any.whl", hash = "sha256:8d23eac5fa660409f57472e3851dab7ac18aba459a8d19cbbba86d3d5aecd2a5", size = 7558 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "cryptography"
|
||||
version = "43.0.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -230,7 +230,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/e6/3d/696e7a0f04555c58a2813d47aaa78cb5ba863c1f453c74a4f45ae772b054/cryptography-43.0.0-cp39-abi3-win_amd64.whl", hash = "sha256:0663585d02f76929792470451a5ba64424acc3cd5227b03921dab0e2f27b1709", size = 3081462 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "dep-logic"
|
||||
version = "0.4.4"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -242,7 +242,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/29/91/2a9fd596cdaec9dc0f52179c08c6b3a18ae6487a3d4a90dace72cb4686f3/dep_logic-0.4.4-py3-none-any.whl", hash = "sha256:3f47301f9a8230443d3df7d7f9bdc33d35d8591a14112d36f221b0e33810d3ae", size = 33717 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "distlib"
|
||||
version = "0.3.8"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -251,7 +251,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/8e/41/9307e4f5f9976bc8b7fea0b66367734e8faf3ec84bc0d412d8cfabbb66cd/distlib-0.3.8-py2.py3-none-any.whl", hash = "sha256:034db59a0b96f8ca18035f36290806a9a6e6bd9d1ff91e45a7f172eb17e51784", size = 468850 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "dulwich"
|
||||
version = "0.21.7"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -280,7 +280,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/76/f9/5ff1ac14c843b1b8047ba48e23d5f266a60c931fe50f29c4ac3c78b7a618/dulwich-0.21.7-cp312-cp312-win_amd64.whl", hash = "sha256:6bd69921fdd813b7469a3c77bc75c1783cc1d8d72ab15a406598e5a3ba1a1503", size = 487654 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "fastjsonschema"
|
||||
version = "2.20.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -289,7 +289,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/6d/ca/086311cdfc017ec964b2436fe0c98c1f4efcb7e4c328956a22456e497655/fastjsonschema-2.20.0-py3-none-any.whl", hash = "sha256:5875f0b0fa7a0043a91e93a9b8f793bcbbba9691e7fd83dca95c28ba26d21f0a", size = 23543 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "filelock"
|
||||
version = "3.15.4"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -298,7 +298,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/ae/f0/48285f0262fe47103a4a45972ed2f9b93e4c80b8fd609fa98da78b2a5706/filelock-3.15.4-py3-none-any.whl", hash = "sha256:6ca1fffae96225dab4c6eaf1c4f4f28cd2568d3ec2a44e15a08520504de468e7", size = 16159 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "findpython"
|
||||
version = "0.6.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -310,7 +310,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/c2/a8/26dc9afd5502fd07d2694143b5084ed9ad87df09588af7e6992afe2a227b/findpython-0.6.1-py3-none-any.whl", hash = "sha256:1fb4d709205de185b0561900267dfff64a841c910fe28d6038b2394ff925a81a", size = 20566 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "h11"
|
||||
version = "0.14.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -319,7 +319,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761", size = 58259 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "hishel"
|
||||
version = "0.0.30"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -332,7 +332,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/2a/3b/93213764caad170daf4984ca39410417251aafa386bb24784f9fb75fc65b/hishel-0.0.30-py3-none-any.whl", hash = "sha256:0c73a779a6b554b52dff75e5962057df25764fd798c31b9435ce6398b1b171c8", size = 40464 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "httpcore"
|
||||
version = "1.0.5"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -345,7 +345,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/78/d4/e5d7e4f2174f8a4d63c8897d79eb8fe2503f7ecc03282fee1fa2719c2704/httpcore-1.0.5-py3-none-any.whl", hash = "sha256:421f18bac248b25d310f3cacd198d55b8e6125c107797b609ff9b7a6ba7991b5", size = 77926 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "httpx"
|
||||
version = "0.27.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -366,7 +366,7 @@ socks = [
|
|||
{ name = "socksio" },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "idna"
|
||||
version = "3.7"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -375,7 +375,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/e5/3e/741d8c82801c347547f8a2a06aa57dbb1992be9e948df2ea0eda2c8b79e8/idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0", size = 66836 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "importlib-metadata"
|
||||
version = "8.2.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -387,7 +387,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/82/47/bb25ec04985d0693da478797c3d8c1092b140f3a53ccb984fbbd38affa5b/importlib_metadata-8.2.0-py3-none-any.whl", hash = "sha256:11901fa0c2f97919b288679932bb64febaeacf289d18ac84dd68cb2e74213369", size = 25920 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "installer"
|
||||
version = "0.7.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -396,7 +396,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/e5/ca/1172b6638d52f2d6caa2dd262ec4c811ba59eee96d54a7701930726bce18/installer-0.7.0-py3-none-any.whl", hash = "sha256:05d1933f0a5ba7d8d6296bb6d5018e7c94fa473ceb10cf198a92ccea19c27b53", size = 453838 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "jaraco-classes"
|
||||
version = "3.4.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -408,7 +408,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/7f/66/b15ce62552d84bbfcec9a4873ab79d993a1dd4edb922cbfccae192bd5b5f/jaraco.classes-3.4.0-py3-none-any.whl", hash = "sha256:f662826b6bed8cace05e7ff873ce0f9283b5c924470fe664fff1c2f00f581790", size = 6777 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "jeepney"
|
||||
version = "0.8.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -417,7 +417,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/ae/72/2a1e2290f1ab1e06f71f3d0f1646c9e4634e70e1d37491535e19266e8dc9/jeepney-0.8.0-py3-none-any.whl", hash = "sha256:c0a454ad016ca575060802ee4d590dd912e35c122fa04e70306de3d076cce755", size = 48435 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "keyring"
|
||||
version = "24.3.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -433,7 +433,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/7c/23/d557507915181687e4a613e1c8a01583fd6d7cb7590e1f039e357fe3b304/keyring-24.3.1-py3-none-any.whl", hash = "sha256:df38a4d7419a6a60fea5cef1e45a948a3e8430dd12ad88b0f423c5c143906218", size = 38092 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "markdown-it-py"
|
||||
version = "3.0.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -445,7 +445,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", size = 87528 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "mdurl"
|
||||
version = "0.1.2"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -454,7 +454,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "more-itertools"
|
||||
version = "10.3.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -463,7 +463,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/bb/23/2d1cdb0427aecb2b150dc2ac2d15400990c4f05585b3fbc1b5177d74d7fb/more_itertools-10.3.0-py3-none-any.whl", hash = "sha256:ea6a02e24a9161e51faad17a8782b92a0df82c12c1c8886fec7f0c3fa1a1b320", size = 59245 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "msgpack"
|
||||
version = "1.0.8"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -493,7 +493,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/72/5c/5facaa9b5d1b3ead831697daacf37d485af312bbe483ac6ecf43a3dd777f/msgpack-1.0.8-cp312-cp312-win_amd64.whl", hash = "sha256:74398a4cf19de42e1498368c36eed45d9528f5fd0155241e82c4082b7e16cffd", size = 75348 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "packaging"
|
||||
version = "24.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -502,7 +502,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/08/aa/cc0199a5f0ad350994d660967a8efb233fe0416e4639146c089643407ce6/packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124", size = 53985 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "pbs-installer"
|
||||
version = "2024.4.24"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -511,7 +511,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/a9/8a/2dfb94b64a32c38680f1795057d5936aef9da244e703ce0bb2af7c5d618c/pbs_installer-2024.4.24-py3-none-any.whl", hash = "sha256:f8291f0231003d279d0de8fde88fa87b7c6d7fabc2671235113cf67513ff74f5", size = 42315 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "pdm"
|
||||
version = "2.17.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -542,7 +542,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/60/fe/0c821af8bf01c3b908dae9aa46313c1d4b95cfb06bbf3441bb4c6e388c82/pdm-2.17.1-py3-none-any.whl", hash = "sha256:2ef7bb1424217f267b81e40f9c5326af27a519e9535e3272aa3b454ad5ab096c", size = 268654 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "pexpect"
|
||||
version = "4.9.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -554,7 +554,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523", size = 63772 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "pip"
|
||||
version = "24.1.2"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -563,7 +563,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/e7/54/0c1c068542cee73d8863336e974fc881e608d0170f3af15d0c0f28644531/pip-24.1.2-py3-none-any.whl", hash = "sha256:7cd207eed4c60b0f411b444cd1464198fe186671c323b6cd6d433ed80fc9d247", size = 1824406 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "pip-tools"
|
||||
version = "7.4.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -580,7 +580,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/0d/dc/38f4ce065e92c66f058ea7a368a9c5de4e702272b479c0992059f7693941/pip_tools-7.4.1-py3-none-any.whl", hash = "sha256:4c690e5fbae2f21e87843e89c26191f0d9454f362d8acdbd695716493ec8b3a9", size = 61235 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "pipx"
|
||||
version = "1.6.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -596,7 +596,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/db/2f/ec2454e6784168837dfe0ffad5080c1c2bdf37ee052999cabfd849a56338/pipx-1.6.0-py3-none-any.whl", hash = "sha256:760889dc3aeed7bf4024973bf22ca0c2a891003f52389159ab5cb0c57d9ebff4", size = 77756 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "pkginfo"
|
||||
version = "1.11.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -605,7 +605,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/c0/38/d617739840a2f576e400f03fea0a75703f93cc274002635b4b998bbb9de4/pkginfo-1.11.1-py3-none-any.whl", hash = "sha256:bfa76a714fdfc18a045fcd684dbfc3816b603d9d075febef17cb6582bea29573", size = 31755 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "platformdirs"
|
||||
version = "4.2.2"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -614,7 +614,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/68/13/2aa1f0e1364feb2c9ef45302f387ac0bd81484e9c9a4c5688a322fbdfd08/platformdirs-4.2.2-py3-none-any.whl", hash = "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee", size = 18146 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "poetry"
|
||||
version = "1.8.3"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -647,7 +647,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/d8/54/9a86a66a7c2c922bfd867cc02c8c27587bd2571120a8fecb71167d7778dd/poetry-1.8.3-py3-none-any.whl", hash = "sha256:88191c69b08d06f9db671b793d68f40048e8904c0718404b63dcc2b5aec62d13", size = 249916 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "poetry-core"
|
||||
version = "1.9.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -656,7 +656,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/a1/8d/85fcf9bcbfefcc53a1402450f28e5acf39dcfde3aabb996a1d98481ac829/poetry_core-1.9.0-py3-none-any.whl", hash = "sha256:4e0c9c6ad8cf89956f03b308736d84ea6ddb44089d16f2adc94050108ec1f5a1", size = 309460 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "poetry-plugin-export"
|
||||
version = "1.8.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -669,7 +669,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/de/55/1dd7c8c955d71f58a9202c37bf8e037d697dc9f11a9a2ade65663251ee44/poetry_plugin_export-1.8.0-py3-none-any.whl", hash = "sha256:adbe232cfa0cc04991ea3680c865cf748bff27593b9abcb1f35fb50ed7ba2c22", size = 10795 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "ptyprocess"
|
||||
version = "0.7.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -678,7 +678,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35", size = 13993 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "pycparser"
|
||||
version = "2.22"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -687,7 +687,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", size = 117552 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "pygments"
|
||||
version = "2.18.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -696,7 +696,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/f7/3f/01c8b82017c199075f8f788d0d906b9ffbbc5a47dc9918a945e13d5a2bda/pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a", size = 1205513 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "pyproject-hooks"
|
||||
version = "1.1.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -705,7 +705,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/ae/f3/431b9d5fe7d14af7a32340792ef43b8a714e7726f1d7b69cc4e8e7a3f1d7/pyproject_hooks-1.1.0-py3-none-any.whl", hash = "sha256:7ceeefe9aec63a1064c18d939bdc3adf2d8aa1988a510afec15151578b232aa2", size = 9184 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "python-dotenv"
|
||||
version = "1.0.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -714,7 +714,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/6a/3e/b68c118422ec867fa7ab88444e1274aa40681c606d59ac27de5a5588f082/python_dotenv-1.0.1-py3-none-any.whl", hash = "sha256:f7b63ef50f1b690dddf550d03497b66d609393b40b564ed0d674909a68ebf16a", size = 19863 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "pywin32-ctypes"
|
||||
version = "0.2.2"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -723,7 +723,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/a4/bc/78b2c00cc64c31dbb3be42a0e8600bcebc123ad338c3b714754d668c7c2d/pywin32_ctypes-0.2.2-py3-none-any.whl", hash = "sha256:bf490a1a709baf35d688fe0ecf980ed4de11d2b3e37b51e5442587a75d9957e7", size = 30152 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "rapidfuzz"
|
||||
version = "3.9.4"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -761,7 +761,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/08/e4/5ff70319bfb20408cd0cee7cf822698155a7b44761d60cca64f13983fdb1/rapidfuzz-3.9.4-cp312-cp312-win_arm64.whl", hash = "sha256:f2d2846f3980445864c7e8b8818a29707fcaff2f0261159ef6b7bd27ba139296", size = 850201 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "requests"
|
||||
version = "2.32.3"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -776,7 +776,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "requests-toolbelt"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -788,7 +788,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/3f/51/d4db610ef29373b879047326cbf6fa98b6c1969d6f6dc423279de2b1be2c/requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06", size = 54481 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "resolvelib"
|
||||
version = "1.0.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -797,7 +797,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/d2/fc/e9ccf0521607bcd244aa0b3fbd574f71b65e9ce6a112c83af988bbbe2e23/resolvelib-1.0.1-py2.py3-none-any.whl", hash = "sha256:d2da45d1a8dfee81bdd591647783e340ef3bcb104b54c383f70d422ef5cc7dbf", size = 17194 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "rich"
|
||||
version = "13.7.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -810,7 +810,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl", hash = "sha256:4edbae314f59eb482f54e9e30bf00d33350aaa94f4bfcd4e9e3110e64d0d7222", size = 240681 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "secretstorage"
|
||||
version = "3.3.3"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -823,7 +823,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/54/24/b4293291fa1dd830f353d2cb163295742fa87f179fcc8a20a306a81978b7/SecretStorage-3.3.3-py3-none-any.whl", hash = "sha256:f356e6628222568e3af06f2eba8df495efa13b3b63081dafd4f7d9a7b7bc9f99", size = 15221 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "setuptools"
|
||||
version = "71.1.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -832,7 +832,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/51/a0/ee460cc54e68afcf33190d198299c9579a5eafeadef0016ae8563237ccb6/setuptools-71.1.0-py3-none-any.whl", hash = "sha256:33874fdc59b3188304b2e7c80d9029097ea31627180896fb549c578ceb8a0855", size = 2341722 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "shellingham"
|
||||
version = "1.5.4"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -841,7 +841,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl", hash = "sha256:7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686", size = 9755 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "sniffio"
|
||||
version = "1.3.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -850,7 +850,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "socksio"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -859,7 +859,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/37/c3/6eeb6034408dac0fa653d126c9204ade96b819c936e136c5e8a6897eee9c/socksio-1.0.0-py3-none-any.whl", hash = "sha256:95dc1f15f9b34e8d7b16f06d74b8ccf48f609af32ab33c608d08761c5dcbb1f3", size = 12763 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "tomli"
|
||||
version = "2.0.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -868,7 +868,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc", size = 12757 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "tomli-w"
|
||||
version = "1.0.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -877,7 +877,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/bb/01/1da9c66ecb20f31ed5aa5316a957e0b1a5e786a0d9689616ece4ceaf1321/tomli_w-1.0.0-py3-none-any.whl", hash = "sha256:9f2a07e8be30a0729e533ec968016807069991ae2fd921a78d42f429ae5f4463", size = 5984 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "tomlkit"
|
||||
version = "0.13.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -886,7 +886,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/fd/7c/b753bf603852cab0a660da6e81f4ea5d2ca0f0b2b4870766d7aa9bceb7a2/tomlkit-0.13.0-py3-none-any.whl", hash = "sha256:7075d3042d03b80f603482d69bf0c8f345c2b30e41699fd8883227f89972b264", size = 37770 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "trove-classifiers"
|
||||
version = "2024.7.2"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -895,7 +895,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/0f/b0/09794439a62a7dc18bffdbf145aaf50297fd994890b11da27a13e376b947/trove_classifiers-2024.7.2-py3-none-any.whl", hash = "sha256:ccc57a33717644df4daca018e7ec3ef57a835c48e96a1e71fc07eb7edac67af6", size = 13468 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "truststore"
|
||||
version = "0.9.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -904,7 +904,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/4b/ba/362829faff5c470defbb2fc574961e1d86427de26ee25ed38d5c3ceec00d/truststore-0.9.1-py3-none-any.whl", hash = "sha256:7f5b447d68318d966428131fc1c00442cca3a2d581a3986143558f007efba0b4", size = 17161 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "typing-extensions"
|
||||
version = "4.12.2"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -913,7 +913,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", size = 37438 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "unearth"
|
||||
version = "0.16.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -926,7 +926,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/f3/08/ad4427cf0d0e19053d7e0b3405f2e6dcb697fb9bff61335a2024729402e2/unearth-0.16.1-py3-none-any.whl", hash = "sha256:5a598ac1a3f185144fadc9de47f1043bff805c36118ffc40f81ef98ff22e8e37", size = 47161 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "urllib3"
|
||||
version = "2.2.2"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -935,7 +935,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/ca/1c/89ffc63a9605b583d5df2be791a27bc1a42b7c32bab68d3c8f2f73a98cd4/urllib3-2.2.2-py3-none-any.whl", hash = "sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472", size = 121444 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "userpath"
|
||||
version = "1.9.2"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -947,7 +947,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/43/99/3ec6335ded5b88c2f7ed25c56ffd952546f7ed007ffb1e1539dc3b57015a/userpath-1.9.2-py3-none-any.whl", hash = "sha256:2cbf01a23d655a1ff8fc166dfb78da1b641d1ceabf0fe5f970767d380b14e89d", size = 9065 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "virtualenv"
|
||||
version = "20.26.3"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -961,7 +961,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/07/4d/410156100224c5e2f0011d435e477b57aed9576fc7fe137abcf14ec16e11/virtualenv-20.26.3-py3-none-any.whl", hash = "sha256:8cc4a31139e796e9a7de2cd5cf2489de1217193116a8fd42328f1bd65f434589", size = 5684792 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "wheel"
|
||||
version = "0.43.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -970,7 +970,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/7d/cd/d7460c9a869b16c3dd4e1e403cce337df165368c71d6af229a74699622ce/wheel-0.43.0-py3-none-any.whl", hash = "sha256:55c570405f142630c6b9f72fe09d9b67cf1477fcf543ae5b8dcb1f5b7377da81", size = 65775 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "xattr"
|
||||
version = "1.1.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
@ -999,7 +999,7 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/78/0d/7b819cdbb3d80d60ff5dc049f00949224607263c72aebb0679cfe468f985/xattr-1.1.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:47a3bdfe034b4fdb70e5941d97037405e3904accc28e10dbef6d1c9061fb6fd7", size = 41379 },
|
||||
]
|
||||
|
||||
[[distribution]]
|
||||
[[package]]
|
||||
name = "zipp"
|
||||
version = "3.19.2"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue