Skip to content

Commit

Permalink
Fix typo univeral2 -> universal2
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Feb 23, 2023
1 parent e968e8f commit 11b0cca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

* `maturin develop` now looks for a virtualenv `.venv` in the current or any parent directory if no virtual environment is active.
* Add a new `generate-ci` command to generate CI configuration in [#1456](https://github.com/PyO3/maturin/pull/1456)
* Deprecate `--univeral2` in favor of `universal2-apple-darwin` target in [#1457](https://github.com/PyO3/maturin/pull/1457)
* Deprecate `--universal2` in favor of `universal2-apple-darwin` target in [#1457](https://github.com/PyO3/maturin/pull/1457)
* Raise an error when `Cargo.toml` contains removed python package metadata in [#1471](https://github.com/PyO3/maturin/pull/1471)
* Use `extension_name` instead of `module_name` for CFFI extensions in develop mode in [#1476](https://github.com/PyO3/maturin/pull/1476)

Expand Down
2 changes: 1 addition & 1 deletion src/build_options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ impl BuildOptions {

let mut universal2 = self.universal2;
if universal2 {
eprintln!("⚠️ Warning: `--universal2` is deprecated, use `--target univeral2-apple-darwin` instead");
eprintln!("⚠️ Warning: `--universal2` is deprecated, use `--target universal2-apple-darwin` instead");
} else if target_triple.as_deref() == Some("universal2-apple-darwin") {
universal2 = true;
target_triple = None;
Expand Down

0 comments on commit 11b0cca

Please sign in to comment.