-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Bump dependencies to support new lockfile version #79
Conversation
tracing::debug!("Fetching package {}", package.location); | ||
let url = match &package.location { | ||
UrlOrPath::Url(url) => url, | ||
UrlOrPath::Path(path) => anyhow::bail!("Path not supported: {}", path), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will this be addressed by #71?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, meant #71
src/pack.rs
Outdated
Package::Conda(p) => conda_packages_from_lockfile.push(p), | ||
Package::Pypi(_) => { | ||
LockedPackageRef::Conda(CondaPackageData::Binary(binary_data)) => conda_packages_from_lockfile.push(binary_data.clone()), | ||
LockedPackageRef::Conda(CondaPackageData::Source(_)) => anyhow::bail!("Conda source packages are not yet supported by pixi-pack"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
xref #80
are failing because it tries to download pixi-pack 0.3.1 from github which hasn't released yet |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, modulo the CI failures. Thank you.
tracing::debug!("Fetching package {}", package.location); | ||
let url = match &package.location { | ||
UrlOrPath::Url(url) => url, | ||
UrlOrPath::Path(path) => anyhow::bail!("Path not supported: {}", path), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will this be addressed by #71?
Motivation
pixi 0.39.0 has a new lockfile version that includes Conda Source packages
closes #78
Changes
Update rattler and adjust tests accordingly