-
Notifications
You must be signed in to change notification settings - Fork 366
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
Release 0.20.1-alpha.2 #8172
Release 0.20.1-alpha.2 #8172
Conversation
Latest documentation preview deployed successfully.
Note: This comment is updated whenever you push a commit. |
@@ -429,7 +429,8 @@ def publish_crate(crate: Crate, token: str, version: str, env: dict[str, Any]) - | |||
retry_attempts = 5 | |||
while True: | |||
try: | |||
cargo(f"publish --quiet --token {token}", cwd=crate.path, env=env, dry_run=False, capture=True) | |||
# We added --locked here hoping that `cargo publish` would use the included `Cargo.lock` file, but it doesn't. |
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.
This ultimately didn't help, but it shouldn't hurt either. Keeping it at least makes it obvious next time, that adding it isn't the solution
@@ -10,7 +10,7 @@ readme = "README.md" | |||
repository.workspace = true | |||
rust-version.workspace = true | |||
version.workspace = true | |||
include = ["../../LICENSE-APACHE", "../../LICENSE-MIT", "**/*.rs", "Cargo.toml"] | |||
include.workspace = true |
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.
The main change in this PR is that we always include Cargo.lock
in the crate package zip. That doesn't really do anything, unfortunately, but at least it is now consistent.
Next steps
A few hours after the GitHub release is created, will create a
conda feedstock PR.
Make sure Jeremy is on top of it!